In C#, if I create a class with no namespace, what namespace will I use when trying to instantiate the class?
For example, assume main is...
namespac
It's in the global namespace and can be referenced like this:
var x = new global::test();