Skip to content

Latest commit

 

History

History
53 lines (38 loc) · 919 Bytes

Summary.Samples.InheritDoc_Child.md

File metadata and controls

53 lines (38 loc) · 919 Bytes
public class InheritDoc_Child : InheritDocBase

Summary.

Remarks section.

Events

public override event Action Event1

An event.

Properties

public override int Property1 { get; set; }

A property.

Property remarks.

Indexers

public override int this[int i] { get; }

An indexer.

Parameters

  • i: A parameter to the indexer.

Methods

public override int Sum(int x, int y)

Calculates the sum.

Parameters

  • x: The first parameter.
  • y: The second parameter.

Returns

Returns the sum of two values.