ArrayExtensionsAsSectionT(T) Method

Gets the specified array as an ArraySectionT instance. No heap allocation occurs when using this method.

Definition

Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
C#
public static ArraySection<T> AsSection<T>(
	this T[]? array
)

Parameters

array  T
The array to create the ArraySectionT from.

Type Parameters

T
The type of the elements in the array.

Return Value

ArraySectionT
An ArraySectionT instance for the specified array.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type T. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also