Example #1
0
 internal VorbisUserComment(VorbisCommentType type, string content)
 {
     this.type = type;
     this.comment = content;
 }
Example #2
0
 public VorbisUserComment(string type, string content)
 {
     this.type = TypeFromString(type);
     this.originalTitle = type;
     this.comment = content;
 }