I have to create an serializable class which has and xml in the format mentioned below. Please check the xml on this link and the ExtendedAttribute Element.
http://telligent.com/community/developers/w/developer6/update-a-user.aspx
The following tag is formed as and key value pair and does not have an object
My ExtendedAtribute class is not a fixed class but its an key value type object which may increase and decrease dynamically
For the reduced XML File:-
You can parse it with:-
This gives you a
Dictionary<string, string>you almost certainly want the true/false/string/number values parsed, but that’s another problem.I appreciate this isn’t perfect, but it should be enough to get you going. Unfortunately it will get quite involved and I don’t have much time.
All based heavily on the answer in Serialize Class containing Dictionary member