Mega Code Archive

 
Categories / VB.Net / Data Types
 

Display positive value using the de-DE culture

Imports System.Globalization Module Example    Public Sub Main()         Dim value As Single          value = 123456.125E21         Console.WriteLine(value.ToString(CultureInfo.CreateSpecificCulture("de-DE")))     End Sub End Module