System.HexConvert.ToBuffer C# (CSharp) Method

ToBuffer() public static method

public static ToBuffer ( string hexString ) : byte[]
hexString string
return byte[]
		public static byte[] ToBuffer(string hexString)
		{
			if (hexString == null) throw new ArgumentNullException("hexString");

			return ToBuffer(hexString, 0, hexString.Length);
		}
		public static byte[] ToBuffer(string hexString, int offset, int count)

Same methods

HexConvert::ToBuffer ( char hexBuffer ) : byte[]
HexConvert::ToBuffer ( char hexBuffer, int offset, int count ) : byte[]
HexConvert::ToBuffer ( string hexString, int offset, int count ) : byte[]