I am trying to deserialize a XML String and i need guidance on how to do it.

A simple sample code would be great for me to quickly grasp what i should be doing.

Here is a sample xml string that i am trying to deserialize. Thank you for you help and time

<Employee xmlns2p1="http://schemas.microsoft.com/2003/10/serialization/arrays" xmlns ="http://schemas.datacontract.org/2004/07/test.tester.UserInfo">

<d2p1:KeyValueOfstringstring>
<d2p1:Key> Name </d2p1 :Key>
<d2p1:Value> John Smith </d2p1:Value>
</d2p1:KeyValueOfstringstring>


<d2p1:KeyValueOfstringstring>
<d2p1:Key> Age </d2p1:Key>
<d2p1:Value> 21 </d2p1:Value>
</d2p1:KeyValueOfstringstring>

</Employee