BinaryReader and BinaryWriter extension methods.
More...
|
| static void | WriteArray (this BinaryWriter bw, params object[] objs) |
| | Write the array of objects into the specified writer. More...
|
| |
| static object[] | ReadArray (this BinaryReader reader) |
| | Read the object array from the specified reader. More...
|
| |
| static object[] | ReadArray (this BinaryReader reader, object obj) |
| | Read the object array from the specified reader. The first value will be set to the specified object. More...
|
| |
| static object[] | CombineArrays (object obj, params object[] objs) |
| | Combine the specified object and array into one array in an efficient manner. More...
|
| |
BinaryReader and BinaryWriter extension methods.
| static object [] TNet.BinaryExtensions.CombineArrays |
( |
object |
obj, |
|
|
params object[] |
objs |
|
) |
| |
|
static |
Combine the specified object and array into one array in an efficient manner.
| static object [] TNet.BinaryExtensions.ReadArray |
( |
this BinaryReader |
reader | ) |
|
|
static |
Read the object array from the specified reader.
| static object [] TNet.BinaryExtensions.ReadArray |
( |
this BinaryReader |
reader, |
|
|
object |
obj |
|
) |
| |
|
static |
Read the object array from the specified reader. The first value will be set to the specified object.
| static void TNet.BinaryExtensions.WriteArray |
( |
this BinaryWriter |
bw, |
|
|
params object[] |
objs |
|
) |
| |
|
static |
Write the array of objects into the specified writer.
The documentation for this class was generated from the following file: