//Value Type (값 형식) //값 자체를 가져오는 형식//Reference Type (참조 형식) //주소를 가져오는 형식//모든 클래스, 배열은 참조 형식, 값을 바꾸면 원본값도 바뀌는 방식//클래스 복사하면 얉은 복사struct Point{ //int m_iVal; //int mVal; //public int x = 100; //구조체는 선언과 동시에 초기화가 불가능. public int x; //public int y { get; set; } public int y; public int Y //Property(속성) { get { return y; } set { y = value; } } //함..