public class InheritDoc_CrefBase
Summary.
Remarks.
public int Sum(int x, int y)
Calculates the sum.
x
: The first parameter.y
: The second parameter.
Returns the sum of two values.
public long Sum(long x, long y)
Calculates the sum.
x
: The first parameter.y
: The second parameter.
Returns the sum of two values.
public long Sum_OverrideSummary(long x, long y)
Calculates the sum (override).
x
: The first parameter.y
: The second parameter.
Returns the sum of two values.