Exemple #1
0
        public static byte GetAsciiByte(this AsciiTable e)
        {
            object val = System.Convert.ChangeType(e, e.GetTypeCode());

            return(System.Convert.ToByte(val));
        }
Exemple #2
0
        public static char GetAsciiChar(this AsciiTable e)
        {
            object val = System.Convert.ChangeType(e, e.GetTypeCode());

            return(System.Convert.ToChar(val));
        }