Is it wrong, bad practice or can I have problems with class equal to namespace ?
Example:
namespace Cielo
{
public class Cielo
{
}
}
It has worked, in some places it gets a bit strange to call Cielo.Cielo.etc
.
Should I change the class, for example, to CieloService
? or something like that?