tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 deletions
|
|
@ -0,0 +1,9 @@
|
|||
'Immutable Strings
|
||||
Dim a = "Test string"
|
||||
Dim b = a 'reference to same string
|
||||
Dim c = New String(a.ToCharArray) 'new string, normally not used
|
||||
|
||||
'Mutable Strings
|
||||
Dim x As New Text.StringBuilder("Test string")
|
||||
Dim y = x 'reference
|
||||
Dim z = New Text.StringBuilder(x.ToString) 'new string
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
Dim a As String = "Test String"
|
||||
Dim b As String = String.Copy(a) ' New string
|
||||
Loading…
Add table
Add a link
Reference in a new issue