c# 동등성
[C#] 동등성 (Equality)
1. 참조 타입(reference type)의 동등성(Equality) using System; class Point { private int x = 0; private int y = 0; public Point(int xPos, int yPos) { x = xPos; y = yPos; } } class Program { static void Main() { Point p1 = new Point(1, 1); Point p2 = p1; Point p3 = new Point(1, 1); // 방법1. == 연산자 사용 // 기본 동작 : 참조(주소)가 동일한가 ? Console.WirteLine(p1 == p2); // true Console.WriteLine(p1 == p3); // false // 방법2..