For example, I want the string "aaa" multiplied by the number 3 , so that it is "aaaaaaaaa" .
But instead, "aaa" converted to a number (ie, 0 ), then multiplied.
Explicitly specifying the type does the same thing: (string)"aaa"*(int)3 outputs 0 .
Is it possible to increase a line several times by multiplication?