Class MemoryMapDelegates
Contains default read/write delegates for elements of several memory mapped data structures.
Inheritance
System.Object
MemoryMapDelegates
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Mars.Common.IO.Mapped
Assembly: Mars.IO.dll
Syntax
public static class MemoryMapDelegates
Fields
| Improve this Doc View SourceReadFromIntArray
A default delegate that can be use to read arrays of integers from a stream.
Declaration
public static readonly MemoryMap.ReadFromDelegate<int[]> ReadFromIntArray
Field Value
Type | Description |
---|---|
MemoryMap.ReadFromDelegate<System.Int32[]> |
ReadFromString
A default delegate that can be use to read strings from a stream.
Declaration
public static readonly MemoryMap.ReadFromDelegate<string> ReadFromString
Field Value
Type | Description |
---|---|
MemoryMap.ReadFromDelegate<System.String> |
ReadFromUIntArray
A default delegate that can be use to read arrays of unsigned integers from a stream.
Declaration
public static readonly MemoryMap.ReadFromDelegate<uint[]> ReadFromUIntArray
Field Value
Type | Description |
---|---|
MemoryMap.ReadFromDelegate<System.UInt32[]> |
WriteToIntArray
A default delegate that can be use to write arrays of integers to a stream.
Declaration
public static MemoryMap.WriteToDelegate<int[]> WriteToIntArray
Field Value
Type | Description |
---|---|
MemoryMap.WriteToDelegate<System.Int32[]> |
WriteToString
A default delegate that can be use to write strings to a stream.
Declaration
public static readonly MemoryMap.WriteToDelegate<string> WriteToString
Field Value
Type | Description |
---|---|
MemoryMap.WriteToDelegate<System.String> |
WriteToUIntArray
A default delegate that can be use to write arrays of unsigned integers to a stream.
Declaration
public static readonly MemoryMap.WriteToDelegate<uint[]> WriteToUIntArray
Field Value
Type | Description |
---|---|
MemoryMap.WriteToDelegate<System.UInt32[]> |