Hey,
I have a class that is inheriting from DictionaryBase.
I have the following 2 methods in the class
VB Code:
Friend Overloads Sub Remove(ByVal item As Schedule) MyBase.Dictionary.Remove(item.ID) End Sub Friend Overloads Sub Remove(ByVal ID As Integer) MyBase.Dictionary.Remove(ID) End Sub
However when I run the code, it never calls these 2 methods. If I try to go to the definition from the line of code that is calling the remove method, it brings up the object browser.
Can I not name my methods Remove?
Thanks,




Reply With Quote