Telerik.ILS.Common.StringExtenstionMethods
StringExtensionsToByteArray Method |
Converts the curret string to an array of integers, representing the byte values in decimal of its internal memory representation.
Namespace: Telerik.ILS.Common
Assembly: StringExtensions (in StringExtensions.dll) 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
Return Value
Type: ByteSystem.Array[byte]
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