Guest User

Untitled

a guest
Dec 18th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public interface IFoo {}
  2.  
  3. public abstract class MyClass<T>
  4. where T : class, IFoo
  5. {
  6. }
  7.  
  8. class Base { }
  9. class Test<T, U>
  10. where U : struct
  11. where T : Base, new() { }
Add Comment
Please, Sign In to add comment