Hi Petr
you said in the announcement of TB 1.10.1 http://www.thinbasic.com/community/s...ll=1#post93686
that StringBuilder can be correctly initialized via string
what does that mean ?
you already have posted above how to initialize a StringBuilder
12345Dim
sb
As
New
StringBuilder
sb.
Add
(
"Ciao world"
)
sb.
Add
(
"Ciao world"
)
Dim
s
As
String
* sb.Length
At
sb.DataPtr
PrintL
s
Bookmarks