how do i declare a string with arguments inside?
suppose
string path = "C:\\Work\\6.70_Extensions\\"
and 6.70_Extensions is replaced by args parsed
i tried this:
string path = ("C:\\Work\\{0}\\NightlyBuild\\", args[0]) ;
where args[0] is a string. I suppose my syntax is wrong somewhere
You should be using
string.Formatfor that.