I have the following XML format:-
<?xml version="1.0"?>        
<Price xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <amount>
    <currency>USD</currency>
    100
  </amount>
  <amount>
    <currency>EUR</currency>
    50
  </amount>
</Price>
the XML value contains the amount in the xml root. May I know how can I serialize the value of 100 & 50 ?
    [Serializable]
    [XmlRoot("amount")]
    public sealed class amount
    {
        [XmlElement("currency")]
        public string currency{ get; set; }
    }
    class Program
    {
        static void Main(string[] args)
        {
            var list = new List<amount> {new amount() {Description = "USD"}, new amount() {Description = "EUR"}};
            var serializer = new XmlSerializer(typeof(List<amount>), new XmlRootAttribute("Price"));
            var ms = new MemoryStream();
            serializer.Serialize(ms, list);
            ms.Position = 0;
            var result = new StreamReader(ms).ReadToEnd();
        }
    }
 
    