System.HexConvert.ToBuffer C# (CSharp) Method

ToBuffer() public static method

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

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

Same methods

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