Click here to Skip to main content
15,879,239 members
Articles / Programming Languages / XML
Article

Generating Get/Set Methods for your C# Code Using XML/XSLT

Rate me:
Please Sign up or sign in to vote.
2.67/5 (9 votes)
24 Nov 2004 77.2K   488   8   1
Genaration of GET/SET methods using XML and XSLT.

Sample Image

Introduction

This article helps in generating get/set methods for C# code automatically if the private member variables are provided. Writing code for get/set methods is a time taking job if you have a number of private member variables.

Background

I got this idea because we had 85 fields in a class for which we needed to write get/set methods. Writing the XML and applying the XSL to it saved my time.

Using the code

Step 1

Generate an XML file with all private member variables with attributes suffix and datatype, where suffix is a name such as _str or _STR (Naming Convention).

Step 2

Apply XSL to above generated XML.

Your XML file:

XML
<xmp>
 <Names>
    <Name datatype="int " suffix="int ">EmpCode</Name>
    <Name datatype="string " suffix="str ">EmpName</Name>
 </Names>
</XMP>

Apply XSLT to the above XML. The following code will be generated:

C#
public int EmpCode
{
    get
    {
        return _intEmpCode;
    }
    set
    {
        _intEmpCode = value;
    }
}
public string EmpName
{
    get
    {
        return _strEmpName;
    }
    set
    {
        _strEmpName = value;
    }
}

Points of Interest

I learnt XML and XSLT.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


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

 
GeneralExtension of above Tool. Pin
Raja Sekhar Amirapu29-Nov-04 20:18
Raja Sekhar Amirapu29-Nov-04 20:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.