Advertisement
Atheuz

Untitled

Apr 19th, 2012
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.20 KB | None | 0 0
  1. public static bool IsAlpha(string str)
  2.         {
  3.             if (string.IsNullOrEmpty(str))
  4.                 return false;
  5.  
  6.             return (str.ToCharArray().All(c => Char.IsLetter(c)));
  7.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement