Passing values for method
- by Kasun
I beginner for programming. So can you please show me how to pass values for your compile() method.
class CL
{
private const string clexe = @"cl.exe";
private const string exe = "Test.exe", file = "test.cpp";
private string args;
public CL(String[] args)
{
this.args = String.Join(" ", args);
this.args +=…