Guest xarzu Posted January 14, 2009 Report Posted January 14, 2009 (edited) In a main routine of a c sharp program, you have a string array like this: public static int Main(string[] arguments) Well, let's suppose I am mimicing this sort of function. Would this be the proper use of a string array? string[] arguments; arguments[0] = "C:\\Users\\All Users\\Apple\\Some File.msi"; arguments[1] = "C:\\Users\\All Users\\Apple\\Another FIle.msi"; I get a compile error Compiler Error CS0165 right on the first line. I guess this is not how to assign strings in C#. But I thought it was. Edited January 14, 2009 by xarzu
Guest DaveShaw Posted January 16, 2009 Report Posted January 16, 2009 (edited) In a main routine of a c sharp program, you have a string array like this: public static int Main(string[] arguments) Well, let's suppose I am mimicing this sort of function. Would this be the proper use of a string array? string[] arguments; arguments[0] = "C:\\Users\\All Users\\Apple\\Some File.msi"; arguments[1] = "C:\\Users\\All Users\\Apple\\Another FIle.msi"; I get a compile error Compiler Error CS0165 right on the first line. I guess this is not how to assign strings in C#. But I thought it was. string[] arguments; //declares the array, you need to initialise it before you can use it. string[] arguments= new string[2]; //declares the array and initialises it to 2 items. Now you can do arguments[0] and arguments[1]. Also, check out: http://msdn.microsoft.com/en-us/library/aa288453(VS.71).aspx Ta Dave Edited January 16, 2009 by DaveShaw
Guest annliu Posted February 11, 2009 Report Posted February 11, 2009 Hi,there are many computer ebooks free download. free ebook download
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now