sealed class charA single unicode character. public char.Constructor(value)public static char char.NullThe null character ''public char char.ComplimentReturns the genetic compliment of the characterpublic char char.ToLowerReturns a lowercase versionpublic char char.ToUpperReturns an uppercase versionpublic bool char.IsLowerReturns true if the character is lowercasepublic bool char.IsUpperReturns true if the character is uppercasepublic static char char.Convert(value)Convert value into type char, null if not successfulpublic static char char.NullThe null character ''public char char.ComplimentReturns the genetic compliment of the characterpublic char char.ToLowerReturns a lowercase versionpublic char char.ToUpperReturns an uppercase versionpublic bool char.IsLowerReturns true if the character is lowercasepublic bool char.IsUpperReturns true if the character is uppercasepublic static char char.Convert(value)Convert value into type char, null if not successful
public virtual object.GetLayoutTipReturn a layout for the hint popuppublic virtual object.GetLayoutSpanReturn a layout inside a spanpublic virtual object.GetLayoutBlockReturn a layout inside a blockpublic virtual object.GetSourceReferenceReturn a source reference for this objectpublic virtual void object.GetTexSource(source)LaTeX source code for this objectpublic virtual Icon object.GetIconReturn a icon for this objectpublic virtual int object.Compare(value)Compares this object with another and returns (-1, 0, or 1)Example 1Example = Paragraph { "Line 1"; linefeed; "Line 2"; linefeed; "A dime is 10"; '\u00A2';};Line 1Line 2A dime is 10¢Example 2Example2 = Paragraph { var c = 'A'; "The ascii value of '{0}' is {1}."(c, c as int);};The ascii value of 'A' is 65.