使用 XElement 作为 XElements 数组并访问它们
Use XElement as array of XElements and access them
我想问一下是否可以将 XElement 用作数组...这里有我如何创建和使用它的示例。
XElement[] tracks = new XElement[pauses.Count + 1];
tracks[0].Add(Trackpoint)
不幸的是它抛出异常:
An unhandled exception of type 'System.NullReferenceException' occurred in ***.exe. Additional information: Object reference not set to an instance of an object.
很明显,我不能这样做。还有其他解决方案吗?
您初始化了 array
,但所有元素都是 null
。在使用之前在每个索引处添加对新 XElement
的引用。
我想问一下是否可以将 XElement 用作数组...这里有我如何创建和使用它的示例。
XElement[] tracks = new XElement[pauses.Count + 1];
tracks[0].Add(Trackpoint)
不幸的是它抛出异常:
An unhandled exception of type 'System.NullReferenceException' occurred in ***.exe. Additional information: Object reference not set to an instance of an object.
很明显,我不能这样做。还有其他解决方案吗?
您初始化了 array
,但所有元素都是 null
。在使用之前在每个索引处添加对新 XElement
的引用。