VB 11 Tutorial 2: Getting Started
If you have not got Visual Studio please refer to Tutorial 1: Here
Today we will be playing with Strings, definition of a string. in my words a group of bytes in a managed array or a group of chars.
Module SubNew
Sub Main()
Dim MyStringValue As String = ""
MyStringValue = "ThisIsAGroupOfChars" ' Chars is Characters
Console.WriteLine(MyStringValue) ' Writes "ThisIsAGroupOfChars"
End Sub
End Module
Today we will be playing with Strings, definition of a string. in my words a group of bytes in a managed array or a group of chars.
Module SubNew
Sub Main()
Dim MyStringValue As String = ""
MyStringValue = "ThisIsAGroupOfChars" ' Chars is Characters
Console.WriteLine(MyStringValue) ' Writes "ThisIsAGroupOfChars"
End Sub
End Module
No comments:
Post a Comment