/// ------------------------------------------------------------------------------------ /// <summary> /// Adds a note to the notes list. /// </summary> /// <param name="note">The note.</param> /// <returns>true if the note was added successfully. Otherwise, false.</returns> /// ------------------------------------------------------------------------------------ public bool AddNote(TMXNote note) { return(TMXNote.AddNote(note, _notes)); }
/// ------------------------------------------------------------------------------------ /// <summary> /// Adds a note to the notes list. /// </summary> /// ------------------------------------------------------------------------------------ public bool AddNote(string lang, string text) { return(TMXNote.AddNote(lang, text, _notes)); }