What is the max and min value of decimal data type in VB.NET

1 Answer

0 votes
Imports System

Public Class Test
    Public Shared Sub Main()
        Console.WriteLine(Decimal.MaxValue)
        Console.WriteLine(Decimal.MinValue)
    End Sub
End Class



' run:
'
' 79228162514264337593543950335
' -79228162514264337593543950335

 



answered Oct 20, 2019 by avibootz
edited Oct 24, 2019 by avibootz

Related questions

1 answer 248 views
1 answer 191 views
1 answer 208 views
1 answer 256 views
1 answer 256 views
1 answer 200 views
1 answer 175 views
...