I want to init virtual method with exact name in abstract class.
And in class, which is the inheritor override method such, that I can override:
- the return type of the base method
- arguments of the method
To show you, what I'm really want to do is smth like this:
abstract class A
{
public virtual void Func1() { }
}
class B : A
{
override string Func1(int a, int b)
{
return (a + b).ToString();
}
}
I know, that C# requires to use the return type/args as in base class, but maybe there are some hints with keyword new in this situation?
new, but it is not overriding, it is just hides a member. – Hamlet Hakobyan Jan 7 at 18:17