int class : Max getter

Description

Returns the maximum value of the int type.

Syntax

intInstance.Max

Arguments

None

Return value

ClassDescription
intThe maximum value of the int type.

Sample code

//anyInt is a instance of int type.

int maximum = anyInt.Max;

Notes

It's a wrapper of the System.Int32.MaxValue.

This getter is a constant. Please note that is not affected by the value of the calling instance.

Links for reference

Copyright © Rice All rights reserved.