I've got a ASMX webservice that returns the following XML, which is a string array. How can I deserialize into the correct type?
<ArrayOfString xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://tempuri.org/">
<string>0 Item(s)</string>
<string>0</string>
</ArrayOfString>
In JQuery this is easy, but I'm looking for a way to do it in C#.