fork(9) download
  1. Imports System
  2.  
  3. Public Class Test
  4. Public Shared Sub Main()
  5. Dim Diff = New TimeSpan(8, 30, 0)
  6. Dim strDiff = String.Format("{0}.{1}", Diff.Hours, Diff.Minutes)
  7.  
  8. Console.WriteLine(strDiff)
  9. End Sub
  10. End Class
Success #stdin #stdout 0.1s 25712KB
stdin
Standard input is empty
stdout
8.30