logo
Учебник_ПОА

Example

public class Book

{

public string title;

static void Main()

{

Book introToVCS = new Book();

System.Xml.Serialization.XmlSerializer reader = new

System.Xml.Serialization.XmlSerializer(introToVCS.GetType());

// Read the XML file.

System.IO.StreamReader file=

new System.IO.StreamReader("c:\\IntroToVCS.xml");

// Deserialize the content of the file into a Book object.

introToVCS = (Book) reader.Deserialize(file);

System.Windows.Forms.MessageBox.Show(introToVCS.title,

"Book Title");

}

}