EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

str += type

Appending types to the string. Append str to str => str += str.

operator str += (
   str left,
   str right
)

Return value

The result string.


str += uint

Append uint to str => str += uint.

operator str += (
   str left,
   uint right
)

str += int

Append int to str => str += int.

operator str += (
   str left,
   int val
)

str += float

Append float to str => str += float.

operator str += (
   str left,
   float val
)

str += long

Append long to str => str += long.

operator str += (
   str left,
   long val
)

str += ulong

Append ulong to str => str += ulong.

operator str += (
   str left,
   ulong val
)

str += double

Append double to str => str += double.

operator str += (
   str left,
   double val
)

Related links

Source