CSharp examples for System:Char
Is byte Ascii
// Permission is hereby granted, free of charge, to any person obtaining a copy using System;// w ww . j av a 2 s . c om public class Main{ public static bool IsAscii (this byte c) { return (table[c] & CharType.IsAscii) != 0; } }