Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. Module Module1
  2.  
  3.     Sub Main()
  4.         '1.Building Strings
  5.         Dim UsersStr As String = Nothing
  6.         Console.WriteLine("Enter a String")
  7.         UsersStr = Console.ReadLine()
  8.         Console.WriteLine()
  9.         'String長短
  10.         Console.WriteLine(UsersStr.Length.ToString())
  11.         Console.ReadLine()
  12.     End Sub
  13.  
  14. End Module