G
Guest
Hello Friends,
I know this question is not specific to .NET CF but as we are in the land of
less memory, I want to ask this question to all your techies. Its strange
thought in my mind.
we often hear that its adivsable to use StringBuilder when to many string
manipulations are there.
For example
Dim str1 as string
str1 &= "Viral"
str1 &= "Thakkar"
ok fine, but what about this case
---Dim str1 as string = "Viral" & "Thakkar"---
Is it still advisable to use stringbuilder, i mean in above case also it
will create two object.. bla bla bla?
thanks,
Viral
I know this question is not specific to .NET CF but as we are in the land of
less memory, I want to ask this question to all your techies. Its strange
thought in my mind.
we often hear that its adivsable to use StringBuilder when to many string
manipulations are there.
For example
Dim str1 as string
str1 &= "Viral"
str1 &= "Thakkar"
ok fine, but what about this case
---Dim str1 as string = "Viral" & "Thakkar"---
Is it still advisable to use stringbuilder, i mean in above case also it
will create two object.. bla bla bla?
thanks,
Viral