Show / Hide Table of Contents

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).

Inheritance
object
Array<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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.

In this article
Back to top Generated by DocFX