Class FloatArray
Class for Number List.
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.SVG.IO
Assembly: Syncfusion.Diagram.Base.dll
Syntax
public class FloatArray
Constructors
FloatArray()
Initializes a new instance of the FloatArray class.
Declaration
protected FloatArray()
FloatArray(Single[])
Initializes a new instance of the FloatArray class.
Declaration
public FloatArray(float[] array)
Parameters
Type | Name | Description |
---|---|---|
System.Single[] | array | The array. |
FloatArray(String)
Initializes a new instance of the FloatArray class.
Declaration
public FloatArray(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value | The value. |
Fields
m_array
Declaration
protected float[] m_array
Field Value
Type |
---|
System.Single[] |
Properties
Array
Gets the array.
Declaration
public float[] Array { get; }
Property Value
Type | Description |
---|---|
System.Single[] | The array. |
Item[Int32]
Gets the System.Single at the specified index.
Declaration
public float this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index | The index. |
Property Value
Type | Description |
---|---|
System.Single | The value at the index. |
Methods
ToString()
Returns a System.String that represents the current System.Object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current System.Object. |
Overrides
System.Object.ToString()
Operators
Implicit(Single[] to FloatArray)
Performs an implicit conversion from System.Single[] to FloatArray.
Declaration
public static implicit operator FloatArray(float[] array)
Parameters
Type | Name | Description |
---|---|---|
System.Single[] | array | The array. |
Returns
Type | Description |
---|---|
FloatArray | The result of the conversion. |