我在 Zedgraph 上有一个列表项(myList),
PointPairList myList = new PointPairList();
myList 中有一些值,现在我只想将 y 值单独复制到一个新数组中。
我的足迹:
myList.toArray(); // Seems to return a complete set of pointpair list
myList.GetRange(); // Gets a range of pointPair list
我正在寻找一种方法,仅复制 y 数据。
提前致谢....:)