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 188 views
1 answer 148 views
1 answer 172 views
1 answer 196 views
1 answer 209 views
1 answer 155 views
1 answer 136 views
...