Writes a 128-bit value to the BinaryWriter.
Namespace: SharpAssembler.CoreAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public static void Write( this BinaryWriter writer, Int128 value ) |
Visual Basic |
---|
<ExtensionAttribute> _ Public Shared Sub Write ( _ writer As BinaryWriter, _ value As Int128 _ ) |
Visual C++ |
---|
[ExtensionAttribute] public: static void Write( BinaryWriter^ writer, Int128 value ) |
Parameters
- writer
- Type: System.IO..::..BinaryWriter
The BinaryWriter to write to.
- value
- Type: SharpAssembler.Core..::..Int128
The value to write.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type BinaryWriter. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | writer == null |
Contracts
Requires | ||
---|---|---|
writer != null
|