bug14.cs 170 B

123456789101112131415
  1. //
  2. // fixed
  3. //
  4. using System;
  5. class X {
  6. static void Main ()
  7. {
  8. string msg = String.Format ("{0} {1} {2} {3}", "one", 3, 3, "two");
  9. Console.WriteLine (msg);
  10. }
  11. }