I am trying to refernce an inherited class from a base class, here's an example of what I have:
public class A
{
//Some methods Here
}
public class B : A
{
//Some More Methods
}
I also have a List<A>
of which I've added B
to, and I'm trying to access B
from. Is there a way I can get B
from the List<A>
I have?