Hi everyone! I have the following problem: I have a class that gets two type parameters (TypeOne and TypeTwo). The class is inherited from "List (Of TypeOne)". I overloaded some methods (like Add, Remove etc.); these methods contain a conversion from TypeTwo to TypeOne. This means that the first type of my class describe how the list elements are internally stored while the second parameter defined how i want to access them. This makes it possible for me to say "List.Add(item As TypeTwo)" and internally
Read More...