ExtendedHostFunctionsarrTypeT Method |
Imports the host array type for the specified element type.
Namespace:
Microsoft.ClearScript
Assembly:
ClearScript.Core (in ClearScript.Core.dll) Version: 7.2.5
Syntaxpublic Object arrType<T>(
int rank = 1
)
Public Function arrType(Of T) (
Optional rank As Integer = 1
) As Object
public:
generic<typename T>
Object^ arrType(
int rank = 1
)
member arrType :
?rank : int
(* Defaults:
let _rank = defaultArg rank 1
*)
-> Object
Parameters
- rank (Optional)
- Type: SystemInt32
The number of dimensions for the host array type to import.
Type Parameters
- T
- The element type for the host array type to import.
Return Value
Type:
ObjectThe imported host array type.
See Also