Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. namespace ConsoleApp1
  2. {
  3. class Program
  4. {
  5. static void Main(string[] args)
  6. {
  7. var a = new Struktura { A = 1, B = 1 };
  8. var b = new Struktura { A = 1, B = 2 };
  9.  
  10. System.Console.WriteLine(a.Equals(b));
  11. System.Console.ReadKey();
  12. }
  13. }
  14.  
  15. public struct Struktura
  16. {
  17. public short B;
  18. public int A;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement