Convertor.AsString Method

TegoOS

ConvertorAsString Method
Converts Byte Array to String

Namespace: Tego.Utils
Assembly: Tego (in Tego.dll) Version: 1.0.6599.21663 (1.2017.413.1)
Syntax
public static string AsString(
	this byte[] bytes
)
<ExtensionAttribute>
Public Shared Function AsString ( 
	bytes As Byte()
) As String
public:
[ExtensionAttribute]
static String^ AsString(
	array<unsigned char>^ bytes
)
[<ExtensionAttribute>]
static member AsString : 
        bytes : byte[] -> string 

Parameters

bytes
Type: SystemByte
Byte Array

Return Value

Type: String
Converted String

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type . 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