C # : 생성자와 인스턴스화를 통해 속성에 데이터 할당 Album수업 이 많은 가정합니다 . public class Album { public string Name {get; set;} public string Artist {get; set;} public int Year {get; set;} public Album() { } public Album(string name, string artist, int year) { this.Name = name; this.Artist = artist; this.Year = year; } } 유형의 객체에 데이터를 할당하고 싶을 때 Album다음 두 가지 방법의 차이점은 무엇입니까? 생성을 통해 var albumData = new Album("Albumius", "..