CSharp examples for System:Char
Is Char Lower
// Copyright (c)2008-2011 Mark II Software, LLC. All Rights Reserved. using System.Text; using System.Linq; using System.Collections.Generic; using System;/*from w w w. j a v a 2 s . c o m*/ public class Main{ public static bool IsLower(this char c) { return Char.IsLower(c); } }