12. 구조체 & 튜플
·
💻 Programming Language/C#
구조체(Struct) => 키워드 : struct 사용 using System; namespace StructEx { //구조체 정의하기 struct MyPoint { public int x; public int y; //**구조체는 매개변수가 없는 기본생성자는 선언할 수 없다. public MyPoint(int x, int y) { this.x = x; this.y = y; } // 모든 구조체는 System.Object 형식을 상속하는 System.ValueType으로 부터 직접 상속받음. public override string ToString() { return string.Format($"{x} {y}"); } } class Program { static void Main(string[] arg..