TagLib.Ogg.GroupedComment.Clear C# (CSharp) 메소드

Clear() 공개 메소드

Clears all of the child tags.
public Clear ( ) : void
리턴 void
        public override void Clear()
        {
            foreach (XiphComment tag in tags)
                tag.Clear ();
        }

Usage Example

예제 #1
0
 public override void RemoveTags(TagLib.TagTypes types)
 {
     if ((types & TagLib.TagTypes.Xiph) != TagLib.TagTypes.None)
     {
         tag.Clear();
     }
 }