I am trying to attempt something such as
void Main()
{
Temp<Bar> Test = new Foo<InheritedBar>();
}
abstract class Temp<T> where T : Bar
{
}
class Foo<T> : Temp<T> where T : Bar
{
}
abstract class Bar
{
}
class InheritedBar : Bar
{
}
The cast does not work, with the error Cannot implicity convert type Foo<InheritedBar> to Temp<Bar>.
However,
Temp<InheritedBar> Test = new Foo<InheritedBar>();
and
Temp<Bar> Test = new Foo<Bar>();
Both work. Why even though InheritedBar inherits from Bar, it can't be cast to it through generics?
I am using the generic type in a wpf Page, which can not be created as a generic so I can't pass T as its type. I only want the functionality at the time of this of Temp, not any of the derived versions functionality. Is there a better way to do this?