Decode() public static method

public static Decode ( char chars, bool allowOddChars ) : byte[]
chars char
allowOddChars bool
return byte[]
コード例 #1
0
ファイル: XmlConvert.cs プロジェクト: yang73137/corefx
 internal static byte[] FromBinHexString(string s, bool allowOddCount)
 {
     if (s == null)
     {
         throw new ArgumentNullException("s");
     }
     return(BinHexDecoder.Decode(s.ToCharArray(), allowOddCount));
 }