Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Imports System
Imports System.Globalization
Public Class TestClass
Public Shared Sub Main()
Dim i As Integer = 100
' Create a CultureInfo object for English in Belize.
Dim bz As New CultureInfo("en-BZ")
' Display i formatted as currency for the bz.
Console.WriteLine(i.ToString("c", bz))
' Create a CultureInfo object for English in the U.S.
Dim us As New CultureInfo("en-US")
' Display i formatted as currency for us.
Console.WriteLine(i.ToString("c", us))
' Create a CultureInfo object for Danish in Denmark.
Dim dk As New CultureInfo("da-DK")
' Display i formatted as currency for dk.
Console.WriteLine(i.ToString("c", dk))
End Sub
End Class