TypeConversion.BytesToString Method (Byte )

 

Decodes all of the bytes in the specified byte array into a string.

Namespace:   Microsoft.WindowsAzure.Common.Internals
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

Syntax

public static string BytesToString(
    byte[] value
)
public:
static String^ BytesToString(
    array<unsigned char>^ value
)
static member BytesToString : 
        value:byte[] -> string
Public Shared Function BytesToString (
    value As Byte()
) As String

Parameters

  • value
    Type: System.Byte[]

    The byte array that contains the sequence of bytes to decode.

Return Value

Type: System.String

A string that contains the decoded bytes.

See Also

TypeConversion Class
Microsoft.WindowsAzure.Common.Internals Namespace

Return to top