I am completely aware that we can have same namespace and the .NET Framework Namespace, and how to access the .NET framework namespace class, when the custom namespace is hiding it.
My question is if I have a custom namespace and class name same as .NET framework namespace and class name, how can I access the .NET framework namespace and class inside it? Example: If I create a C# project with System namespace and a class Console with two methods Read() and Write(), how will I be able to access the .NET framework namespace and console to display output..
Apologies for asking such type of question.. It my curiosity to know what happens in such cases.
Thanks