CSharp examples for System:Char
is Alpha Char
// Copyright by Contributors using System.IO;//from w w w . j a va 2 s. c o m using System.Runtime.Serialization.Formatters.Binary; using System.Collections; using System.Runtime.CompilerServices; using System.Text; using System.Collections.Generic; using System; public class Main{ //[MethodImpl(MethodImplOptions.Synchronized)] public static bool isAlphaChar(char c) { return ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z')); } }