0
votes
A way of casting a base type to a derived type
This will work:
SomeBaseClass class = new SomeDerivedClass();
SomeDerivedClass derClass = (SomeDerivedClass)class;
Although this example is not too interesting, th …
