EnglishРусский  

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

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

Edit