Here is my current code (.net core):
Box code:
class Box { }
SpeicalBox code:
class SpecialBox : Box { }
Stack code:
interface Stack<T> where T : Box
{
AnotherInterface<T> TheFunction();
}
SpecialStack code:
class SpecialStack : Stack<SpecialBox> { }
StacksHolder code:
class StacksHolder
{
private List<Stack<Box>> Stacks = new List<Stack<Box>>();
}
This is the error i get:
I am getting the following error if I am trying to add a SpecialStack to the list of Stacks in the StacksHolder:
cannot convert from 'SpecialStack' to 'Stack'
The code I use for that:
class StacksHolder
{
private List<Stack<Box>> Stacks = new List<Stack<Box>>();
public StacksHolder()
{
Stacks.Add(new SpecialStack());
}
}
Does anyone have an idea why that does not work? I would be very happy if anyone could explain me, how to fix it.
Thanks in advance!