Confusion with Inheritance
This always confuses me....can someone please shed light where all is dark....
inheritedclass is inherited from baseclass, so the code below works ok, but will bc1 expose the methods/properties of baseclass or inheritedclass and why?
baseclass bc1 = new inheritedclass();