I need to get the Type
of a class without instantiating it, I tried to do this:
variavelQualquer.Type = new ClasseA().Type; // Type é uma variável pública que guarda o valor do método GetType()
But so an instance is still created (seen as it was done, it is the same expected). How to get the class type without this happening? Is it possible?