Integer.Sum(Int32, Int32) Method

Definition

Adds two integers together as per the + operator.

[Android.Runtime.Register("sum", "(II)I", "", ApiSince=24)]
public static int Sum (int a, int b);
[<Android.Runtime.Register("sum", "(II)I", "", ApiSince=24)>]
static member Sum : int * int -> int

Parameters

a
Int32

the first operand

b
Int32

the second operand

Returns

the sum of a and b

Attributes

Remarks

Adds two integers together as per the + operator.

Added in 1.8.

Java documentation for java.lang.Integer.sum(int, int).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to