This is a discussion on Easy Property Class Generator for DOTNET Developers within the ASP and ASP.NET Programming forums, part of the Web Development category; hi, i have created a project for creating class..... You have to specify the Namespace,class name, Field and Datatype ........
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| hi, i have created a project for creating class..... You have to specify the Namespace,class name, Field and Datatype .....create property class Easy Property Class Generator....sc.JPG For Example.... using System; using System.Collections.Generic; using System.Text; namespace TestApp { public class test { //Initializes a new instance of test public test() { } private int _a; private int _b; private string _c; //Gets or sets the a public int a { get { return _a; } set { _a = value; } } //Gets or sets the b public int b { get { return _b; } set { _b = value; } } //Gets or sets the c public string c { get { return _c; } set { _c = value; } } } }
__________________ The MOSS Master of Solution Service Last edited by Anandavinayagam : 01-10-2008 at 02:13 AM. |
| Sponsored Links |
| |||
|
__________________ The MOSS Master of Solution Service Last edited by Anandavinayagam : 01-10-2008 at 02:14 AM. |
| |||
| Another Version..some enhancements Allow null values.. private int? _ss; //Gets or sets the ss public int? ss { get { return _ss; } set { _ss = value; } } Here : EasyTools-1.zip
__________________ The MOSS Master of Solution Service |
![]() |
| Thread Tools | |
| Display Modes | |
| |
LinkBacks (?)
LinkBack to this Thread: http://www.discussweb.com/asp-asp-net-programming/4947-easy-property-class-generator-dotnet-developers.html | |||
| Posted By | For | Type | Date |
| Seo tips » Easy Property Class Generator for DOTNET Developers - DiscussWeb IT Community - Technical Support and Technology Discussions | This thread | Pingback | 01-10-2008 12:05 AM |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| XML Class Generator for C# using XSD for deserialization | santhakumar | C# Programming | 2 | 11-20-2007 08:48 AM |
| WebServices in DotNet | S.Vinothkumar | ASP and ASP.NET Programming | 47 | 09-11-2007 08:41 AM |
| Guidelines for developers working with Databases | vijayanand | Database Support | 0 | 09-11-2007 01:25 AM |
| Purpose of regexp_label property and regexp_MSW_class property? | Shanthi | Testing Tools | 1 | 08-10-2007 06:01 AM |
| Is it getting easy? | googoo | General Web hosting Discussions | 5 | 03-28-2007 08:31 AM |