public static void Main()
Console.WriteLine(CheckForIsogram("test"));
Console.WriteLine(CheckForIsogram("uncopyrightable"));
Console.WriteLine(CheckForIsogram("abcdefghijklmnopqrstuvwxyz"));
Console.WriteLine(CheckForIsogram("This is a sentence."));
Console.WriteLine(CheckForIsogram("Boo"));
Console.WriteLine(CheckForIsogram("Abc"));
Console.WriteLine(CheckForIsogram("An artichoke"));
public static bool CheckForIsogram(string word)