I have multiple XML files as string in C# and i want to convert this string to C# Array. I am trying through xmldocument but it throughs following exception. "Data at the root level is invalid. Line 463, position 1."
XmlDocument doc = new XmlDocument();
doc.LoadXml(context.Request.Params[2]);
Please help me how can i convert multiple xml files (string) to c# array.