Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. public class ball {
  2. ITeste<IItem> Teste{ get; set; }
  3. }
  4.  
  5. public interface ITeste<T>
  6. where T : IItem, IEquatable<T>, new()
  7. {
  8. //ITeste code
  9. }
  10.  
  11. public interface IItem : IEquatable<IItem>
  12. {
  13. //IItem Code
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement