วันอังคารที่ 25 พฤษภาคม พ.ศ. 2553

Deserialize from TextReader and Stream

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 );
//}

ไม่มีความคิดเห็น: