Search
XmlSerializationContext.ReadDoubleArray Method
See Also
 






Reads a double array with the specified name.

Namespace: MindFusion.Scheduling
Assembly: MindFusion.Scheduling

 Syntax

C#  Copy Code

public double[] ReadDoubleArray (
    string elementName,
    string subElementName,
    XElement parentElement
)

Visual Basic  Copy Code

Public Function ReadDoubleArray( _
    elementName As String, _
    subElementName As String, _
    parentElement As XElement _
) As Double()

 Parameters

elementName

The name of the element containing the array.

subElementName

The name of the elements containing the individual array values.

parentElement

The parent element of the node with the specified name.

 Return Value

An array of double values. Returns null if there is no element with the specified name under the specified parent.

 See Also