I am having a web application created in asp.net. In that we are having designer files for my user controls. In that controls are defined like following.
protected global::Common.Controls.ETextBox txtDummy;
what is the meaning of global key word in above statement
It refers to the global namespace. It allows you to compile things like:
Note that the class is called
Systemand without theglobalkeyword this won’t compile as it won’t find any static property calledConsolein this class. This being said you should never name your classSystem.