System.Collections.Generic.Dictionary.Remove(UnmountedDriveModel)

Here are the examples of the csharp api System.Collections.Generic.Dictionary.Remove(UnmountedDriveModel) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : DrivesListViewModel.cs
with GNU General Public License v3.0
from IngvarX

private void RemoveDrive(UnmountedDriveModel unmountedDriveModel)
        {
            _unmountedDrivesDictionary.Remove(unmountedDriveModel);

            UpdateDrivesList();
        }