Programming Reference Manual
 
Syntax
 
Dim v As New StringClass
 
Description
A special type of a string variable , which operates as a class. This type of string is especially designed for high performance string handling, like concatation. Also, it allows string manipulation without the need of addional helper string variables.
See Also
Example
 
Sub Main
   Dim myStr As New StringClass
   Dim X as Integer
 
   For X = 1 To 10000
      MyStr.Append CStr(X)
   Next X
 
   MsgBox MyStr.FromLeft(80)
   MsgBox MyStr.FromRight(80)
 
End Sub