[This is preliminary documentation and is subject to change.]
Namespace: NFX.IOAssembly: NFX (in NFX.dll) Version: 3.0.0.1 (3.0.0.1)
public static void WriteULEB128(
this byte[] buf,
ulong value,
int idxStart = 0,
uint padding = 0
)
public static void WriteULEB128(
this byte[] buf,
ulong value,
int idxStart = 0,
uint padding = 0
)
<ExtensionAttribute>
Public Shared Sub WriteULEB128 (
buf As Byte(),
value As ULong,
Optional idxStart As Integer = 0,
Optional padding As UInteger = 0
)
<ExtensionAttribute>
Public Shared Sub WriteULEB128 (
buf As Byte(),
value As ULong,
Optional idxStart As Integer = 0,
Optional padding As UInteger = 0
)
public:
[ExtensionAttribute]
static void WriteULEB128(
array<unsigned char>^ buf,
unsigned long long value,
int idxStart = 0,
unsigned int padding = 0
)
public:
[ExtensionAttribute]
static void WriteULEB128(
array<unsigned char>^ buf,
unsigned long long value,
int idxStart = 0,
unsigned int padding = 0
)
static member WriteULEB128 :
buf : byte[] *
value : uint64 *
?idxStart : int *
?padding : uint32
(* Defaults:
let _idxStart = defaultArg idxStart 0
let _padding = defaultArg padding 0
*)
-> unit
static member WriteULEB128 :
buf : byte[] *
value : uint64 *
?idxStart : int *
?padding : uint32
(* Defaults:
let _idxStart = defaultArg idxStart 0
let _padding = defaultArg padding 0
*)
-> unit
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).