[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 Stream stream,
ulong value,
out int count,
uint padding = 0
)
public static void WriteULEB128(
this Stream stream,
ulong value,
out int count,
uint padding = 0
)
<ExtensionAttribute>
Public Shared Sub WriteULEB128 (
stream As Stream,
value As ULong,
<OutAttribute> ByRef count As Integer,
Optional padding As UInteger = 0
)
<ExtensionAttribute>
Public Shared Sub WriteULEB128 (
stream As Stream,
value As ULong,
<OutAttribute> ByRef count As Integer,
Optional padding As UInteger = 0
)
public:
[ExtensionAttribute]
static void WriteULEB128(
Stream^ stream,
unsigned long long value,
[OutAttribute] int% count,
unsigned int padding = 0
)
public:
[ExtensionAttribute]
static void WriteULEB128(
Stream^ stream,
unsigned long long value,
[OutAttribute] int% count,
unsigned int padding = 0
)
static member WriteULEB128 :
stream : Stream *
value : uint64 *
count : int byref *
?padding : uint32
(* Defaults:
let _padding = defaultArg padding 0
*)
-> unit
static member WriteULEB128 :
stream : Stream *
value : uint64 *
count : int byref *
?padding : uint32
(* Defaults:
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
Stream. 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).