Module Example Public Sub Main() Dim integerValue As Integer integerValue = 999 Console.WriteLine(integerValue.ToString("X")) ' Displays EB98. Dim cost As Double cost = 123456789.9876 Console.WriteLine(cost.ToString("C", New System.Globalization.CultureInfo("en-US"))) End Sub End Module