I have the following situation:
public List<TEntidade> MeuMetodo<TEntidade>()
{
//My Code Here
}
Is there any way I can get the type of this TEntidade? The final goal is to use this Type to create a switch ...
I have the following situation:
public List<TEntidade> MeuMetodo<TEntidade>()
{
//My Code Here
}
Is there any way I can get the type of this TEntidade? The final goal is to use this Type to create a switch ...
Use typeof
. Then, just get the string
with the name, and apply on the switch, like this:
Type tipoEntidade = typeof(TEntidade);
string tipo = tipoEntidade.FullName;
switch (tipo)
{
...
}
You can use Typeof () like this:
Type seuTipo = typeof(TEntidade);