-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.

Chris Laplante
  • 29,338
  • 17
  • 103
  • 134
user1293655
  • 31
  • 2
  • 5

1 Answers1

2

private means that a method (function) or variable can only be accessed within the class in which you're declaring it.

Read this: What is the difference between Public, Private, Protected, and Nothing?

You might want to learn some more about C# or object-oriented programming in general if you're not familiar with these concepts.

Community
  • 1
  • 1
paul
  • 1,655
  • 11
  • 23