Reflector.cs 629 B

1234567891011121314151617181920212223242526
  1. // Licensed to the .NET Foundation under one or more agreements.
  2. // The .NET Foundation licenses this file to you under the MIT license.
  3. namespace Microsoft.DotNet.Tests.ArgumentForwarding
  4. {
  5. public class Program
  6. {
  7. public static void Main(string[] args)
  8. {
  9. bool first = true;
  10. foreach (var arg in args)
  11. {
  12. if (first)
  13. {
  14. first = false;
  15. }
  16. else
  17. {
  18. Console.Write(",");
  19. }
  20. Console.Write(arg);
  21. }
  22. }
  23. }
  24. }