long class : Max getter

Description

Returns the maximum value of the long type.

Syntax

longInstance.Max

Arguments

None

Return value

ClassDescription
longThe maximum value of the long type.

Sample code

//anyLong is a instance of long type.

long maximum = anyLong.Max;

Notes

It's a wrapper of the System.Int64.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.