// A string is a pangram if it contains all the characters of the alphabet ignoring case
using System;
using System.Linq;
class Program
{
static bool isStringPangram(string str) {
return str.ToLower().Where(ch => Char.IsLetter(ch)).GroupBy(ch => ch).Count() == 26;
}
static void Main() {
string str = "The quick brown fox jumps over the lazy dog";
Console.WriteLine(isStringPangram(str));
}
}
/*
run:
True
*/