StringExtensions.ToByteArray Method

String Extensions

StringExtensionsToByteArray Method
Converts a string into an array of bytes

Namespace: StringConvertions
Assembly: StringConvertions (in StringConvertions.exe) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static byte[] ToByteArray(
	this string input
)
<ExtensionAttribute>
Public Shared Function ToByteArray ( 
	input As String
) As Byte()
public:
[ExtensionAttribute]
static array<unsigned char>^ ToByteArray(
	String^ input
)
[<ExtensionAttribute>]
static member ToByteArray : 
        input : string -> byte[] 

Parameters

input
Type: SystemString
Takes String parameter.

Return Value

Type: Byte
Returns converted string to its byte representation.

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).
See Also