Class Array<T>
A helper method as a replacement for System.Array. This method does not exist in .NET Standard 1.5 (even though the docs say it does).
Inherited Members
Namespace: SpiceSharp
Assembly: SpiceSharp.dll
Syntax
public static class Array<T>
Type Parameters
Name | Description |
---|---|
T | The base value type. |
Methods
Empty()
Returns an empty array.
Declaration
public static T[] Empty()
Returns
Type | Description |
---|---|
T[] | The empty array. |
Remarks
The static Array does not contain an Empty method in .NET Standard 1.5, despite it being documented as such. That's why I rolled out a custom one.