TagLib.IFD.IFDStructure.RemoveTag C# (CSharp) Method

RemoveTag() public method

Removes a given tag from the IFD.
public RemoveTag ( int directory, IFDEntryTag entry_tag ) : void
directory int /// A value with the directory index that /// contains the tag to remove. ///
entry_tag IFDEntryTag /// A value with the tag to remove. ///
return void
		public void RemoveTag (int directory, IFDEntryTag entry_tag)
		{
			RemoveTag (directory, (ushort) entry_tag);
		}
		

Same methods

IFDStructure::RemoveTag ( int directory, ushort tag ) : void