Пример #1
0
    public void Reload()
    {
        SongMeta other = SongMetaBuilder.ParseFile(SongMetaUtils.GetAbsoluteSongMetaPath(this));

        // Copy values
        Encoding = other.Encoding;
        SongHash = other.SongHash;

        voiceNames = other.voiceNames;
        voices     = new List <Voice>();

        Artist = other.Artist;
        Title  = other.Title;
        Bpm    = other.Bpm;
        Mp3    = other.Mp3;

        Background   = other.Background;
        Cover        = other.Cover;
        Edition      = other.Edition;
        End          = other.End;
        Gap          = other.Gap;
        Genre        = other.Genre;
        Language     = other.Language;
        Relative     = other.Relative;
        Start        = other.Start;
        PreviewStart = other.PreviewStart;
        PreviewEnd   = other.PreviewEnd;
        Video        = other.Video;
        VideoGap     = other.VideoGap;
        Year         = other.Year;
    }