Hello, it's possible to use String::Format not like this String::Format("text{0}, text{1}", arg1, arg2);
but use like this?
String::Format("
text{1},
text{2}",
arg1,
arg2);
? i try it but this give me an error. thanks.
aaah, thanks a lot :) this helped me when i want format long strings :)