CSharp examples for System:Char
Is Char Upper
// 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 ww . j av a2s . com public class Main{ public static bool IsUpper(this char c) { return Char.IsUpper(c); } }