MathArray

MathArray(IMathElement)

创建一个数学数组并将指定元素放入其中

public MathArray(IMathElement element)  
参数类型描述
elementIMathElement要放入数组的元素

示例

示例:

[C#]  
MathArray mathArray = new MathArray(new MathematicalText("item1"));  

另请参阅


MathArray(IEnumerable<IMathElement>)

创建一个数学数组并将指定元素放入其中

public MathArray(IEnumerable<IMathElement> elements)  
参数类型描述
elementsIEnumerable`1要放入数组的元素

另请参阅