public static void Main()
Console.WriteLine('.'.IsLetter());
Console.WriteLine('.'.IsLetterOrSeparator());
public static bool IsLetter(this char c) =>c is >= 'a' and <= 'z' or >= 'A' and <= 'Z';
public static bool IsLetterOrSeparator(this char c) => c is (>= 'a' and <= 'z') or (>= 'A' and <= 'Z') or '.' or ',';