public static byte GetAsciiByte(this AsciiTable e) { object val = System.Convert.ChangeType(e, e.GetTypeCode()); return(System.Convert.ToByte(val)); }
public static char GetAsciiChar(this AsciiTable e) { object val = System.Convert.ChangeType(e, e.GetTypeCode()); return(System.Convert.ToChar(val)); }