Show / Hide Table of Contents

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 fully backed by main memory, with an initial capacity set to a given number of elements.

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 fully backed by main memory, with its size set to size elements.

Type Parameters
T

The type of element stored in the array.

Implements
IArrayFactory.CreateMemoryBackedArray<T>(Int64)
Back to top Built by Itinero, MIT licensed.