xml to xsd to c# class - C# 3.0, .net 3.5
- by uno
Following this articlelink text
one of the comments from 'zanoni' said he did it this way
Using .NET 3.5:
[XmlRoot]
public class EmailConfiguration
{
[XmlElement]
public string DataBoxID { get; set; }
[XmlElement]
public DefaultSendToAddressCollectionClass DefaultSendToAddressCollection { get; set; }
}
public class…