Class DefaultArrayFactory
Implementation of IArrayFactory which uses the default array types implemented and exposed in Reminiscence.
Inheritance
System.Object
DefaultArrayFactory
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public sealed class DefaultArrayFactory : IArrayFactory
Methods
CreateMemoryBackedArray<T>(Int64)
Creates an
Declaration
public ArrayBase<T> CreateMemoryBackedArray<T>(long size)
Parameters
System.Int64
size
The number of elements that the array needs to fit. |
Returns
ArrayBase<T>
An |
Type Parameters
T
The type of element stored in the array. |