implement Remove() method on HandleDictionary

This commit is contained in:
Michael Becker 2021-09-15 13:38:56 -04:00
parent 1e590d02fa
commit 313cc26a36
No known key found for this signature in database
GPG Key ID: 98C333A81F18C22C

View File

@ -38,5 +38,10 @@ namespace MBS.Framework.Collections.Generic
{
_dict.Add(handle, obj);
}
public void Remove(TObject obj)
{
_dict.RemoveByValue2(obj);
}
}
}