Click here to Skip to main content
15,891,316 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 53K   335   13  
Serialization for Rapid Application Development.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace System.Xml.Serialization
{
    [AttributeUsage(AttributeTargets.Class, AllowMultiple = true, Inherited = true)]
    public class SerializableExtraTypeAttribute : Attribute
    {
        public SerializableExtraTypeAttribute(Type t) 
            : base() { _Types = new Type[] { t }; }
        public SerializableExtraTypeAttribute(Type t1, Type t2) 
            : base() { _Types = new Type[] { t1, t2 }; }
        public SerializableExtraTypeAttribute(Type t1, Type t2, Type t3) 
            : base() { _Types = new Type[] { t1, t2, t3, }; }
        public SerializableExtraTypeAttribute(Type t1, Type t2, Type t3, Type t4) 
            : base() { _Types = new Type[] { t1, t2, t3, t4, }; }
        public SerializableExtraTypeAttribute(Type t1, Type t2, Type t3, Type t4, Type t5) 
            : base() { _Types = new Type[] { t1, t2, t3, t4, t5, }; }
        public SerializableExtraTypeAttribute(Type t1, Type t2, Type t3, Type t4, Type t5, Type t6) 
            : base() { _Types = new Type[] { t1, t2, t3, t4, t5, t6, }; }

        private IEnumerable<Type> _Types = null;

        public IEnumerable<Type> Types
        {
            get { return _Types; }
        }
    }
}

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