Click here to Skip to main content
15,892,059 members
Articles / Programming Languages / C#

A Tool to create N-Layer Architecture Classes

Rate me:
Please Sign up or sign in to vote.
4.87/5 (18 votes)
6 Jun 2016CPOL8 min read 68.1K   10.9K   126  
This tool is used to create N-Layer Architecture classes.

namespace ClassGeneratorEvents
{
    /// <summary>
    /// The class that contains the csharp keywords.
    /// </summary>
    public class CSKeywords
    {
        /// <summary>
        /// Represents the keyword 'private'.
        /// </summary>
        public const string PRIVATE = "private";
        /// <summary>
        /// Represents the keyword 'public'.
        /// </summary>
        public const string PUBLIC  = "public";
        /// <summary>
        /// Represents the keyword 'string'.
        /// </summary>
        public const string STRING =  "string";
        /// <summary>
        /// Represents the keyword 'int'.
        /// </summary>
        public const string INT = "int";
        /// <summary>
        /// Represents the keyword 'float'.
        /// </summary>
        public const string FLOAT = "float";
        /// <summary>
        /// Represents the keyword 'double'.
        /// </summary>
        public const string DOUBLE = "double";
        /// <summary>
        /// Represents the keyword 'DateTime'.
        /// </summary>
        public const string DATETIME = "DateTime";
        /// <summary>
        /// Represents the keyword 'object'.
        /// </summary>
        public const string OBJECT = "object";
        /// <summary>
        /// Represents the keyword 'class'.
        /// </summary>
        public const string CLASS = "class";
        /// <summary>
        /// Respresents the keyword 'namespace'.
        /// </summary>
        public const string NAMESPACE = "namespace";
        /// <summary>
        /// Represents the keyword 'using'.
        /// </summary>
        public const string USING = "using";
        /// <summary>
        /// Represents the keyword 'get'.
        /// </summary>
        public const string GET = "get";
        /// <summary>
        /// Represents the keyword 'set'.
        /// </summary>
        public const string SET = "set";
        /// <summary>
        /// Represents the keyword 'new'.
        /// </summary>
        public const string NEW = "new";
        /// <summary>
        /// Represents the keyword 'return'.
        /// </summary>
        public const string RETURN = "return";
    }
}

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
India India
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions