Answer the question
In order to leave comments, you need to log in
How to make a class heir?
It is not possible to make a class heir:
// Сводка:
// Provides the APIs for managing user in a persistence store.
//
// Параметры типа:
// TUser:
// The type encapsulating a user.
public class UserManager<TUser> : IDisposable where TUser : class
{
}
public class UserManagerWrapper<TUser> : UserManager<TUser>
{
}
Answer the question
In order to leave comments, you need to log in
public class UserManager<TUser> : IDisposable
where TUser : class
{
public void Dispose()
{
throw new NotImplementedException();
}
}
public class UserManagerWrapper<TUser> : UserManager<TUser>
where TUser : class
{
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question