Click here to Skip to main content
15,896,118 members
Articles / Programming Languages / XML

XML Serialization in .NET

Rate me:
Please Sign up or sign in to vote.
4.33/5 (12 votes)
26 Jul 20023 min read 245.4K   697   54  
This article shows an example of how to use XML serialization in .NET
// PhoneNumber.cs
//
// Written by Liong Ng

using System;

public class PhoneNumber
{
   public PhoneNumber()
   {
   }

   public PhoneNumber( string areaCode, string number )
   {
      this.areaCode = areaCode;
      this.number = number;
   }

   public string AreaCode
   {
      get { return areaCode; }
      set { areaCode = value; }
   }

   public string Number
   {
      get { return number; }
      set { number = value; }
   }

   public override string ToString()
   {
      return areaCode + " " + number;
   }

   private string areaCode;
   private string number;
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions