public ControlsSynchronizer()
{
//initialize the underlying ArrayList
m_frameworkControls = new ArrayList();
}
public ControlsSynchronizer(IMapControlDefault mapControl, IPageLayoutControlDefault pageLayoutControl) : this()
{
//assign the class members
m_mapControl = mapControl;
m_pageLayoutControl = pageLayoutControl;
}
有这两个构造函数,第二个构造函数后面接了一个 : this() ,不知道什么意思。在this上“转到定义”就到第一个构造函数上去了。难道是继承构造函数?
这种带符号的关键字不好百度,只好提问了
繁华开满天机