Interface ConvertibleToArray
Indicates if the object can convert to and from an array.
Namespace: Microsoft.ML.Probabilistic.Collections
Assembly: Microsoft.ML.Probabilistic.dll
Syntax
public interface ConvertibleToArray
Remarks
Possessing this interface implies that the object also has a constructor accepting an array type,
such that new T(this.ToArray())
is equivalent to this.Clone()
.
Methods
ToArray()
Declaration
Array ToArray()
Returns
Type | Description |
---|---|
Array |