| ValueWriterTWriteValue Method |
Namespace:
Ookii.Jumbo.IO
Assembly:
Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 2.0.0
Syntax public static void WriteValue(
T value,
BinaryWriter writer
)
Public Shared Sub WriteValue (
value As T,
writer As BinaryWriter
)
public:
static void WriteValue(
T value,
BinaryWriter^ writer
)
static member WriteValue :
value : 'T *
writer : BinaryWriter -> unit
Parameters
- value
- Type: T
The value to write. - writer
- Type: System.IOBinaryWriter
The writer to write the value to.
Remarks
If the type of value implements IWritable, it is used to write
the value. If it does not, the IValueWriterT is used to write the value.
See Also