How to print all command line arguments except the program name in C#

1 Answer

0 votes
using System;

class Program
{
    public static void Main(string[] args)
    {
        Console.WriteLine(string.Join(" ", args));
    }
}



/*
run:

abc 123 F35

*/

 



answered 6 days ago by avibootz
...