Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. using System;
  2. namespace console1
  3. {
  4. public class Systems
  5. {
  6. public static bool GetEqual<T>(T a, T b) where T : IComparable<T>
  7. {
  8. return a.CompareTo(b) == 0;
  9. }
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement