コードで古い Visual Basic メソッドを使用したくありません。また、古い CInt() Visual Basic メソッドに対応する最新の 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