Mega Code Archive
Categories
/
VB.Net
/
Data Types
Standard Numeric Format Strings for positive value
Module Example Sub Main() Dim value As Integer value = 12345 Console.WriteLine(value.ToString("D8")) End Sub End Module