fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string[] array = new string[] { "a", "b", "c", "d" };
  8. string refFormat = "{2} {0}";
  9. string newStr = String.Format(refFormat, array);
  10. Console.WriteLine(newStr);
  11. }
  12. }
Success #stdin #stdout 0.02s 33872KB
stdin
Standard input is empty
stdout
c a