클래스보다 상대적으로 가벼운 특징이 있다. 클래스와 같이 메서드, 프로퍼티 등 거의 비슷하 구조를 가지고 있다. 상속 불가 인터페이스 구현 가능 using System; namespace HelloWorld { class Program { // 구조체 선언 struct ClassRoom // 명명규칙 : 대문자로 시작 { //public string name; // Error : null 불가 public string? name = null; public int age; public bool woman; // 생성자 public ClassRoom(string? name, int age, bool woman) { this.name = name; // 선언된 필드는 반드시 초기화되어야 함 this.age =..