Decode() public static method

public static Decode ( char chars, bool allowOddChars ) : byte[]
chars char
allowOddChars bool
return byte[]
Esempio n. 1
0
 internal static byte[] FromBinHexString(string s, bool allowOddCount)
 {
     if (s == null)
     {
         throw new ArgumentNullException("s");
     }
     return(BinHexDecoder.Decode(s.ToCharArray(), allowOddCount));
 }