Class BinaryWriterExtensions
Provides write methods for a BinaryWriter.
Namespace: Unity.Entities.Serialization
Syntax
public static class BinaryWriterExtensions
Methods
| Name | Description |
|---|---|
| Write(BinaryWriter, Byte) | Writes a single byte. |
| Write(BinaryWriter, Byte[]) | Writes a byte array. |
| Write(BinaryWriter, Int32) | Writes a single int. |
| Write(BinaryWriter, UInt64) | Writes a single ulong. |
| WriteArray<T>(BinaryWriter, NativeArray<T>) | Writes data from a native array. |
| WriteList<T>(BinaryWriter, NativeList<T>) | Writes data from a native list. |
| WriteList<T>(BinaryWriter, NativeList<T>, Int32, Int32) | Writes the specified number of elements from a native list. |