public static void Main()
Metodo(new ClasseTeste(){ Obj = new Registro(){ Nome = "Teste 1"} });
Metodo2(new ClasseTeste(){ Obj = new Registro(){ Nome = "Teste 2"} });
public static void Metodo<T>(IBase<T> parametro) where T: class,IRegistro
string nome = parametro.GetObj().Nome;
public static void Metodo2(IBase<IRegistro> parametro)
string nome = parametro.GetObj().Nome;
public static void Metodo3(Teste<IRegistro> parametro)
string nome = parametro.Obj.Nome;
public interface IRegistro
public class Registro : IRegistro
public string Nome {get;set;}
public interface IBase<out T> where T : class, IRegistro
public abstract class Teste<T> : IBase<T> where T : class, IRegistro
public class ClasseTeste : Teste<Registro>