コード例 #1
0
 public void NewArtist()
 {
     if (!string.IsNullOrEmpty(Name))
     {
         _artistList.Add(Name, this);
     }
     else
     {
         throw new Exception("No artist name entered");
     }
 }