Mp3TagLib.Tager.ChangeTags C# (CSharp) 메소드

ChangeTags() 공개 메소드

public ChangeTags ( Mp3Tags tags ) : void
tags Mp3Tags
리턴 void
        public void ChangeTags(Mp3Tags tags)
        {
            if (_currentFile == null)
                throw new NullReferenceException("File is not loaded");

            if (tags == null)
                throw new ArgumentException("Incorrect tags");
            _currentFile.SetTags(tags);
        }