In a asp.net control, when I try to do
Inherits="Maclasse<U,V>"
The code generates me :
public partial class Maclasse<U {
which gives an error.
I tried to escape with \ , to put inherits with simple quotes, nothing seems to work.
Have anybody an idea of how to solve this problem ?
Thanks,
Nicolas
The ASP.Net parser doesn’t support inheritance from a generic class. There is, however, a workaround: https://stackoverflow.com/a/1512027/291999