Is byte Ascii - CSharp System

CSharp examples for System:Char

Description

Is byte Ascii

Demo Code

// 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;
      }
}

Related Tutorials