Skip to content

Latest commit

 

History

History
52 lines (37 loc) · 954 Bytes

Summary.Samples.InheritDoc_CrefBase.md

File metadata and controls

52 lines (37 loc) · 954 Bytes
public class InheritDoc_CrefBase

Summary.

Remarks.

Methods

public 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.

public long Sum(long x, long y)

Calculates the sum.

Parameters

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

Returns

Returns the sum of two values.

public long Sum_OverrideSummary(long x, long y)

Calculates the sum (override).

Parameters

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

Returns

Returns the sum of two values.