Problem implementing the IDictionary Interface
I am trying to implement the IDictionary interface in a class and the framework is telling me to implement the Overridable Overloads Function GetEnumerator() as IDictionaryEnumerator method. If I add it using the drop down combo at the top of the editor it inserts the method for me.
However the class still has an error because it also wants me to implement Overridable Overloads Function GetEnumerator() as IEnumerator. Obviously I can't do this because the methods only differ by return type!! Has anyone else encountered this problem or does someone know of a solution ?
Thanks in advance :confused: