Override an overridden method (C#)

后端 未结 6 893
梦如初夏
梦如初夏 2021-02-03 17:47

I\'m trying to override an overridden method (if that makes sense!) in C#.

I have a scenario similar to the below, but when I have a breakpoint in the SampleMethod() in

6条回答
  •  别那么骄傲
    2021-02-03 18:39

    Method overriding is OOP feature that allows a child class to provide a specific implementation of a method that is already provided by one of its parent classes.

提交回复
热议问题