How to get float positive infinity in VB.NET

1 Answer

0 votes
Imports System

Public Class Program
	Public Shared Sub Main()
        Console.WriteLine(Single.PositiveInfinity)
    End Sub
End Class





' run:
'
' ∞
'

 



answered Aug 23, 2023 by avibootz
...