Guest User

Untitled

a guest
Jan 16th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Color c = default; // or: c = default(Color); no difference
  2. Debug.Print($"{c.Equals(default(Color))}"); // true
  3. Debug.Print($"{c.Equals(default)}"); // false WHY?!
  4.  
  5. (string s, int i) t = default;
  6. Debug.Print($"{t.Equals(default((string, int)))}"); // true
  7. Debug.Print($"{t.Equals(default)}"); // true
Add Comment
Please, Sign In to add comment