Int8Array Class

Int8Array class

Represents an array of twos-complement 8-bit signed integers.

public class Int8Array : TypedArray<sbyte>

Constructors

NameDescription
Int8Array(ArrayBuffer)Initializes a new instance of the Int8Array class.
Int8Array(int)Initializes a new instance of the Int8Array class.
Int8Array(sbyte[])Initializes a new instance of the Int8Array class.
Int8Array(ArrayBuffer, int)Initializes a new instance of the Int8Array class.
Int8Array(ArrayBuffer, int, int)Initializes a new instance of the Int8Array class.

Properties

NameDescription
getBuffer Gets the ArrayBuffer referenced by this instance.
getByteLength Gets the byteLength accessor property represents the length of an ArrayBuffer in bytes.
getByteOffset Gets the byteOffset from the start of referenced ArrayBuffer.
[getItem]
[setItem] Gets or sets the SByte at the specified index.
getLength Gets the length of a typed array.

Methods

NameDescription
getPlatformType()This method is used to retrieve the ECMAScript object .

Fields

NameDescription
static readonly BYTES_PER_ELEMENTThe property represents the size in bytes of each element in an typed array.

See Also