Advertisement
jsauto

Console-rw

Apr 1st, 2013
4,484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.34 KB | None | 0 0
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement