T
Tommy Vercetti
The first three of these statements work. The fourth doesn't.
String::Format("{0}{0}{0}{0}", S"");
String::Format("{0}{1}{0}{0}", S"", S"");
String::Format("{0}{1}{2}{0}", S"", S"", S"");
String::Format("{0}{1}{2}{3}", S"", S"", S"", S"");
Question #1: Why?
Question #2: What is the simplest way to get this to work. I would
prefer to keep this statement on one line as opposed to separate
statements to declare, populate, and use a parameter array variable.
String::Format("{0}{0}{0}{0}", S"");
String::Format("{0}{1}{0}{0}", S"", S"");
String::Format("{0}{1}{2}{0}", S"", S"", S"");
String::Format("{0}{1}{2}{3}", S"", S"", S"", S"");
Question #1: Why?
Question #2: What is the simplest way to get this to work. I would
prefer to keep this statement on one line as opposed to separate
statements to declare, populate, and use a parameter array variable.