CSharp examples for System:Char
Is Char Letter
using System.Linq; using System.Collections.Generic; public class Main{ public static bool IsLetter(this char c) {/* ww w . j a v a 2 s. c o m*/ return char.IsLetter(c); } }