Language: C#
I have to pass a huge string array (built dynamically) as an argument to run an exe.
I am thinking of acheiving it by the below 2 ways. But I am not feeling confid
You could store the arguments in a text file and pass that text file as the argument. Your application can then parse the text file to analyse the arguments.