Click here to Skip to main content
15,884,986 members
Articles / Multimedia / GDI+

Drawing Library

Rate me:
Please Sign up or sign in to vote.
4.78/5 (63 votes)
10 Dec 2007CPOL3 min read 292.7K   12.8K   211  
A library for creating shapes and developing tools.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;

namespace Globe.Xml.Serialization
{
    /// <summary>
    /// Class used by Serializer to store informations about serializable fields.
    /// </summary>
    public class DataMember
    {
        #region Constructors

        /// <summary>
        /// Constructor.
        /// </summary>
        /// <param name="dataInfo">MemberInfo of the serializable field.</param>
        /// <param name="typeInfo">Type of the serializable field.</param>
        public DataMember(MemberInfo dataInfo, Type typeInfo)
        {
            _dataInfo = dataInfo;
            _typeInfo = typeInfo;
        }

        #endregion

        #region Properties

        MemberInfo _dataInfo = null;
        /// <summary>
        /// Gets the MemberInfo of the serializable field.
        /// </summary>
        public MemberInfo DataInfo
        {
            get { return _dataInfo; }
        }

        Type _typeInfo = null;
        /// <summary>
        /// Gets the Type of the serializable field.
        /// </summary>
        public Type TypeInfo
        {
            get { return _typeInfo; }
        }

        #endregion
    }
}

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 Code Project Open License (CPOL)


Written By
Software Developer
Italy Italy
I am a biomedical engineer. I work in Genoa as software developer. I developed MFC ActiveX controls for industrial automation for 2 years and packages for Visual Studio 2005 for 1 year. Currently I'm working in .NET 3.5 in biomedical area.

Comments and Discussions