When creating any class in C #, using Visual Studio, it automatically adds the namespace, as can be seen below:
namespace Aplicacao.Modelo
{
class Cliente
{
}
}
In Visual Basic, it does not do the same thing:
Public Class Cliente
End Class
The result I was hoping for was:
Namespace Aplicacao.Modelo
Public Class Cliente
End Class
End Namespace
Is there any way to make VS do the same for VB?