子によってオーバーライドされる同じメソッド(sampleMethod)を持つ2つのクラスがあるとしましょう:ObjectParentとObjectChild
ObjectChild ExampleVariable = new ObjectChild();
(ExampleVariable as ObjectParent).sampleMethod();
これは、ObjectChildまたはObjectParentからsampleMethodを呼び出しますか?
ObjectChildからsampleMethodを呼び出すと思いますが、その仮定に基づいて一連のコードをスローする前に確認したいと思います。