-2

I am new to ArcObjects using c# in visual studio 10. In some code, it often have something like this:

private bool m_isMouseDown = false;
private ESRI.ArcGIS.Display.INewLineFeedback m_lineFeedback;
private IActiveView m_focusMap;

Can someone tell me what is the meaning? Does it mean in the code following these description, m_fucusMap will indicate or represent IActiveView?

Thanks in advance.

4

1 回答 1

2

private意味着方法(函数)或变量只能在您声明它的类中访问。

阅读本文: Public、Private、Protected 和 Nothing 之间有什么区别?

如果您不熟悉这些概念,您可能想了解更多关于 C# 或一般的面向对象编程的知识。

于 2012-03-27T21:13:30.400 回答