why do I get a compiler error in the following code stating: Cannot implicty convert type SpecialNode to T even though T must derive from NodeBase as I defined
Cannot implicty convert type SpecialNode to T
Why not just do the following:
return (T)MySpecialNode;
What version of .NET?