public class InheritDoc_Child : InheritDocBase
Summary.
Remarks section.
public override event Action Event1
An event.
public override int Property1 { get; set; }
A property.
Property remarks.
public override int this[int i] { get; }
An indexer.
i
: A parameter to the indexer.
public override int Sum(int x, int y)
Calculates the sum.
x
: The first parameter.y
: The second parameter.
Returns the sum of two values.