如何解决C#中组件的二义性,代码如下

问题描述:

private int[,] pos = {{0,0,0},{0,0,0},{0,0,0}};
private int ar = 2, ac = 2;
private int Hits = 0;
public Container components = null;
public Form1()
{
InitializeComponent();
//PlaceRandom();
}
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (components != null)
{
components.Dispose();
}
}
base.Dispose( disposing );
}

public Container components = null;
这个是什么,在form.designer.cs里是不是已经定义了一个components
如果是,请删除