Dec 7, 2007 #1 JLizOB Programmer Dec 5, 2007 45 CA I have the following code: Code: string line6 = "PATH {0}"; With {0} being the parameter, I can't quite figure out how to pass a value to it though. Can someone please help? Thanks!
I have the following code: Code: string line6 = "PATH {0}"; With {0} being the parameter, I can't quite figure out how to pass a value to it though. Can someone please help? Thanks!
Dec 7, 2007 1 #2 Guru7777 Programmer Dec 10, 2003 331 US Code: string line6 = string.Format("PATH {0}", "some other string"); ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ== Upvote 0 Downvote
Code: string line6 = string.Format("PATH {0}", "some other string"); ---------------------------------------- TWljcm8kb2Z0J3MgIzEgRmFuIQ==