Class BinaryWriterExtensions
Binary writer extensions.
Inheritance
System.Object
BinaryWriterExtensions
Assembly: ISynergy.Framework.Core.dll
Syntax
public static class BinaryWriterExtensions : object
Methods
View Source
Write<T>(BinaryWriter, T[])
Reads a struct
from a stream.
Declaration
public static bool Write<T>(this BinaryWriter stream, T[] array)
where T : struct
Parameters
Type |
Name |
Description |
BinaryWriter |
stream |
|
T[] |
array |
|
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
View Source
Write<T>(BinaryWriter, T[][])
Reads a struct
from a stream.
Declaration
public static bool Write<T>(this BinaryWriter stream, T[][] array)
where T : struct
Parameters
Type |
Name |
Description |
BinaryWriter |
stream |
|
T[][] |
array |
|
Returns
Type |
Description |
System.Boolean |
|
Type Parameters
View Source
Write<T>(BinaryWriter, T[,])
Reads a struct
from a stream.
Declaration
public static bool Write<T>(this BinaryWriter stream, T[, ] array)
where T : struct
Parameters
Type |
Name |
Description |
BinaryWriter |
stream |
|
T[,] |
array |
|
Returns
Type |
Description |
System.Boolean |
|
Type Parameters