SortedTreeTableTKey, TValueBeginEdit Method
Begins an edit of the current archive table.
Concurrent editing of a file is not supported. Subsequent calls will
throw an exception rather than blocking. This is to encourage
proper synchronization at a higher layer.
Wrap the return value of this function in a Using block so the dispose
method is always called.
using (ArchiveFile.ArchiveFileEditor editor = archiveFile.BeginEdit())
{
editor.AddPoint(key, value);
editor.AddPoint(key, value);
editor.Commit();
}