StringExtensionsParseHexBytes(String) Method

Parses a continuous hex stream from a string.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 8.1.0
C#
public static byte[] ParseHexBytes(
	this string s
)

Parameters

s  String
A string containing continuous hex values without delimiters.

Return Value

Byte
A byte array containing the hex values as bytes.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

Exceptions

ArgumentNullExceptions is .
ArgumentExceptions does not consist of event amount of hex digits, or parsing failed.

See Also