long class : Min getter

Description

Returns the minimum value of the long type.

Syntax

longInstance.Min

Arguments

None

Return value

ClassDescription
longThe minimum value of the long type.

Sample code

//anyLong is a instance of long type.

long minimum = anyLong.Min;

Notes

It's a wrapper of the System.Int64.MinValue.

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.