我不想在我的代碼中使用舊的Visual Basic方法,並且對於與舊的CInt()Visual Basic方法相對應的最新VB.NET方法,我感到困惑。對應於舊CInt()VB方法的VB.NET方法是什麼?
例如,
Dim n1 as Double : n1 = CInt(2.1111111) 'Gets only 2 without rounding it
Dim n2 as Double : n2 = CInt(2.7777777) 'Get only 2 without rounding it
我不想四捨五入值,但只能將它的十進制值截斷爲CInt()方法。 – Max
VB6中的CInt也執行四捨五入 - 請參閱:http://www.chennaiiq.com/developers/reference/visual_basic/functions/cint.asp –