Hi all,

THis is a very simple question, and I am just not getting something. How do you return an array from a function in C#. Here is my code:

Code:
	private string[] readXML()
		{
                                 //do something
                                }

//here is where I call it
String[] ServerAndDB;

//it breaks on this line saying 'indentifier expected'
ServerAndDB[] = readXML();
Any thoughts?