implict type cast in generic method

后端 未结 7 1226
刺人心
刺人心 2021-01-19 09:47

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

相关标签:
7条回答
  • 2021-01-19 10:35

    Why not just do the following:

    return (T)MySpecialNode;
    

    What version of .NET?

    0 讨论(0)
提交回复
热议问题