How can I change the project namespace in Visual Studio?
The namespace is currently WindowsFormsApplication16, and I want the namespace to be MyNa
Assuming this is for a C# project and assuming that you want to change the default namespace, you need to go to Project Properties, Application tab, and specify "Default Namespace".
Default namespace is the namespace that Visual studio sets when you create a new class. Next time you do Right Click > Add > Class it would use the namespace you specified in the above step.