在winform中看见这个定义 System.ComponentModel.Container components= null 或者有自定义控件的时候 private System.ComponentModel.Container components = new System.ComponentModel.Container(); 在还有一个方法是释放的
protected override void Dispose(bool disposing)
{
if (disposing)
{
if (!((components == null)))
{
components.Dispose();
}
}
base.Dispose(disposing);
}
然后就没有使用这个components ,那这个components的意义是什么啊,为什么非要实例化一个呢,又没有用过????搞不懂啊,求大神解答。谢谢