ArrayExtensionsAsSectionT(T) Method
Gets the specified
array as an
ArraySectionT instance.
No heap allocation occurs when using this method.
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public static ArraySection<T> AsSection<T>(
this T[]? array
)
<ExtensionAttribute>
Public Shared Function AsSection(Of T) (
array As T()
) As ArraySection(Of T)
public:
[ExtensionAttribute]
generic<typename T>
static ArraySection<T> AsSection(
array<T>^ array
)
[<ExtensionAttribute>]
static member AsSection :
array : 'T[] -> ArraySection<'T>
- array T
- The array to create the ArraySectionT from.
- T
- The type of the elements in the array.
ArraySectionTAn
ArraySectionT instance for the specified
array.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).