Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / C#

Serializable Extra Types for .NET 4

Rate me:
Please Sign up or sign in to vote.
4.85/5 (9 votes)
25 May 2011GPL33 min read 51.8K   335   13  
Serialization for Rapid Application Development.
using System;
using System.Xml.Serialization;
using TestLibraryOne;

namespace TestLibraryTwo
{
    [Serializable]
    [SerializableExtraType(typeof(Bionics))]
    public class BionicMan : Bionics
    {
        public string FirstName { get; set; }

        public string LastName { get; set; }

        public Sex Sex { get; set; }
    }
}

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.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Architect Stackify
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