KeePass.IO.Data.Entry.Remove C# (CSharp) Method

Remove() public method

Removes this entry from its group.
public Remove ( ) : void
return void
        public void Remove()
        {
            Group.Entries
                .Remove(this);
        }

Usage Example

Exemplo n.º 1
0
 /// <summary>
 /// Removes the specified entry.
 /// </summary>
 /// <param name="entry">The entry.</param>
 public void Remove(Entry entry)
 {
     entry.Remove();
     _entries.Remove(entry.ID);
 }
All Usage Examples Of KeePass.IO.Data.Entry::Remove