コード例 #1
0
        public void LoadTest()
        {
            string filePath = string.Empty;                  // TODO: Initialize to an appropriate value
            bool   LoadData = false;                         // TODO: Initialize to an appropriate value
            ID3v2  target   = new ID3v2(filePath, LoadData); // TODO: Initialize to an appropriate value

            target.Load();
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }
コード例 #2
0
ファイル: ID3Info.cs プロジェクト: 5l1v3r1/dastankbank-1
 /// <summary>
 /// Load both ID3v1 and ID3v2 information from file
 /// </summary>
 public void Load()
 {
     _ID3v2.Load();
     _ID3v1.Load();
 }