System.HexConvert.ToUInt8 C# (CSharp) Method

ToUInt8() public static method

public static ToUInt8 ( char hexBuffer, int offset ) : byte
hexBuffer char
offset int
return byte
		public static byte ToUInt8(char[] hexBuffer, int offset)
		{
			const int maxLength = 2;

			if (hexBuffer == null) throw new ArgumentNullException("hexBuffer");
			if (offset < 0) throw new ArgumentOutOfRangeException("offset");
			if (offset + 1 > hexBuffer.Length) throw new ArgumentOutOfRangeException("offset");

			var end = Math.Min(hexBuffer.Length, offset + maxLength);
			var result = 0u;
			for (var i = 0; offset < end; offset++, i++)
			{
				var hexChar = hexBuffer[offset];
				var hexNum = ToHexNum(hexChar);

				if (i % 2 == 1)
					result |= hexNum << (i - 1) * 4;
				else
					result |= hexNum << (i + 1) * 4;
			}

			return checked((byte)result);
		}
		public static byte ToUInt8(string hexString, int offset)

Same methods

HexConvert::ToUInt8 ( string hexString, int offset ) : byte