Mp3TagLib.Tager.ChangeTags C# (CSharp) Method

ChangeTags() public method

public ChangeTags ( Mp3Tags tags ) : void
tags Mp3Tags
return 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);
        }