public CountryStorage CreateCountryListFromTextReader( TextReader xmlInput )
{
XmlSerializer xmlSerializer = new XmlSerializer(
typeof( CountryStorage ),
new Type[] { typeof( Country ), typeof( State ) } );
return (CountryStorage) xmlSerializer.Deserialize( xmlInput );
}
//public CountryStorage CreateCountryListFromStreamReader( StreamReader xmlInput )
//{
// XmlSerializer xmlSerializer = new XmlSerializer(
// typeof( CountryStorage ),
// new Type[] { typeof( Country ), typeof( State ) } );
// return (CountryStorage) xmlSerializer.Deserialize( xmlInput );
//}
ไม่มีความคิดเห็น:
แสดงความคิดเห็น