Append ULong data type values to a StringBuilder object. : ULong « Data Types « VB.Net






Append ULong data type values to a StringBuilder object.

   

Imports System.Text

Class Sample
   Public Shared Sub Main()
      Dim sb As New StringBuilder()
      
      Dim xUInt64 As ULong = 10
      sb.Append(xUInt64)

      Dim str As [String] = sb.ToString()
      Console.WriteLine("The appended string is:")
      Console.WriteLine(str)

   End Sub
End Class

   
    
    
  








Related examples in the same category

1.Use the Min method to return and display the smaller of two UInt64 variables.
2.UInt64.MaxValue