H
HW
Hi, I understand strings are immutable in .NET CF so if i have the following
would it create a new string object each time?
Dim Tmp as String ' variable defined as member of class
tmp = func1(x) where func 1 returns a string
tmp = func1(y)
tmp = func1(z)
there is code inbetween these statements obviously. When tmp is assigned to
function would a new object be created?
How do i get round this if a new object is created?
would it create a new string object each time?
Dim Tmp as String ' variable defined as member of class
tmp = func1(x) where func 1 returns a string
tmp = func1(y)
tmp = func1(z)
there is code inbetween these statements obviously. When tmp is assigned to
function would a new object be created?
How do i get round this if a new object is created?