比如 我的class A
{
PointF a = new PointF(2,3);
static list<PointF> listPt = new list<PointF>();listPt.Add(a);}我在B 
class B 
{
PointF b = new PoinF(4,5);
A.listPt.Add(b);}class C
{
for(int i = 0 ; i < A.listPt.Count ; i++)
{
这里访问的话 肯定报错,可是我想2个数据都要怎么办呢?????? 除了给static 还有什么办法 如果我无限添加数据呢
}}