Search results for query: *

  • Users: peaq 2
  • Content: Threads
  • Order by date
  1. P

    Question Use Multiple Type in Generic T C#

    0 I have this interface base repo with genric type T: public interface IRepositoryBase<T> where T : class { void Add(T obj); } and this interfaces heritance from the IRepositoryBase public interface IClass1Repository : IRepositoryBase<Class1> { } public interface IClass2Repository ...
Back
Top Bottom