コード例 #1
0
 private void loadInfo()
 {
     levelInfo = Actors.Where(a => a.Class == "LevelInfo").FirstOrDefault();
     if (levelInfo != null)
     {
         title  = levelInfo.GetProperty("Title");
         title  = title?.Substring(1, title.Length - 2);
         author = levelInfo.GetProperty("Author");
         author = author?.Substring(1, author.Length - 2);
         song   = levelInfo.GetProperty("Song");
         song   = song?.Substring(6, song.Length - 7);
     }
 }