Potential issues with the use of "using" with namespaces

The “using” tag can simplify one’s code by eliminating the need to call out a namespace for every method contained within a library. The risk is that an error can occur if a project is using more than one library, and more than one of them contains one or more methods with the same name.

2 Likes

Exactly Right! :slight_smile:

Privacy & Terms