fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string[] stArray = new string[] { "A", "B", "C" , "D" };
  8. string temp = stArray[2];
  9. stArray[2] = stArray[1];
  10. stArray[1] = temp;
  11. for(int i = 0; i < stArray.Length; ++i)
  12. Console.Write(stArray[i]);
  13. }
  14. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
ACBD