[]
Represents an array literal in the syntax tree.
public class ArrayNode : ConstNode, ICloneable
Creates a new ArrayNode from array.
public ArrayNode(object[,] elements)
elements
object[,]Array elements. The value can't be null (Nothing).
Array elements of this node. The value can't be null (Nothing).
public object[,] Elements { get; set; }
Supported types:
double, string, bool, CalcError.The following types will be normalized to double if you convert the ArrayNode to string and then convert it back:
System.Byte, System.Int16, int, long, System.SByte, System.UInt16, System.UInt32, System.UInt64, float, System.Decimal.Floating-point types can't be NaN or infinity.