class ULongArray

Summary

This class represents an unsigned 64-bit array managed by the Max Environment.

syntax:
public class ULongArray : Array<ulong>

Constructors

ULongArray(IntPtr Pointer, ulong Count, ulong Alignment)

Instantiates an array of ulongs with a given pointer, element count and alignment.

syntax:
public ULongArray(IntPtr Pointer, ulong Count, ulong Alignment) : base(Pointer, Count, Alignment)

Parameters

Type Name Description
IntPtr Pointer Array pointer
ulong Count Number of elements
ulong Alignment Alignment

ULongArray(ulong Count)

Instantiates an array of ulongs with a certain number of elements.

syntax:
public ULongArray(ulong Count) : base(Count)

Parameters

Type Name Description
ulong Count Number of elements

ULongArray(ulong[] Elements)

Instantiates an array of ulongs with an array.

syntax:
public ULongArray(ulong[] Elements) : base(Elements)

Parameters

Type Name Description
ulong[] Elements Elements

Methods

CopyFromLength(ulong[] Array, int Length)

Copies a source array to this one, of a certain length of elements.

syntax:
protected override void CopyFromLength(ulong[] Array, int Length)

Parameters

Type Name Description
ulong[] Array Source
int Length Length

InstanceCreate(ulong Length)

Creates an instance of ULongArray of a specified length.

syntax:
public override IDataType InstanceCreate(ulong Length)

Parameters

Type Name Description
ulong Length Length

Returns: Instance ( override IDataType )

Operators

ULongArray

Implicitly converts a ulong array to an instance of ULongArray.

syntax:
public static implicit operator ULongArray(ulong[] Value) => new ULongArray(Value);