StringExtensionsParseHexBytes(String, String) Method

Parses delimited hex values from a string into an array of bytes.

Definition

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

Parameters

s  String
A string containing delimited hex values.
separator  String
A separator delimiting the hex values. If , then s is parsed as a continuous hex stream.

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 .
ArgumentExceptionseparator is or empty, and s does not consist of event number of hex digits, or parsing failed.

See Also