[This is preliminary documentation and is subject to change.]
Decode string with standart UTF8 decoder
Namespace: NFXAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static string FromUTF8Bytes(
this byte[] buf,
int idx = -1,
int cnt = -1
)
public static string FromUTF8Bytes(
this byte[] buf,
int idx = -1,
int cnt = -1
)
<ExtensionAttribute>
Public Shared Function FromUTF8Bytes (
buf As Byte(),
Optional idx As Integer = -1,
Optional cnt As Integer = -1
) As String
<ExtensionAttribute>
Public Shared Function FromUTF8Bytes (
buf As Byte(),
Optional idx As Integer = -1,
Optional cnt As Integer = -1
) As String
public:
[ExtensionAttribute]
static String^ FromUTF8Bytes(
array<unsigned char>^ buf,
int idx = -1,
int cnt = -1
)
public:
[ExtensionAttribute]
static String^ FromUTF8Bytes(
array<unsigned char>^ buf,
int idx = -1,
int cnt = -1
)
static member FromUTF8Bytes :
buf : byte[] *
?idx : int *
?cnt : int
(* Defaults:
let _idx = defaultArg idx -1
let _cnt = defaultArg cnt -1
*)
-> string
static member FromUTF8Bytes :
buf : byte[] *
?idx : int *
?cnt : int
(* Defaults:
let _idx = defaultArg idx -1
let _cnt = defaultArg cnt -1
*)
-> string
Return Value
Type:
StringUsage 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).