/// <summary> /// retrieves the string data associated with the specified tag /// </summary> public string GetStringTag(string s) { return(TagUtils.GetStringTag(TagData, s)); }
/// <summary> /// retrieves the character data associated with the specified tag /// </summary> public char?GetCharTag(string s) { return(TagUtils.GetCharTag(TagData, s)); }
/// <summary> /// retrieves the integer data associated with the specified tag /// </summary> public int?GetIntTag(string s) { return(TagUtils.GetIntTag(TagData, s)); }
/// <summary> /// Update Int Tag only /// </summary> public void UpdateIntTagData(string s, int value, bool addIfNotFound = false) { bool replaced = TagUtils.ReplaceOrAddIntTag(ref TagData, s, value, addIfNotFound); }