Using CodeDOM in .NET
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
Hi All, Could anyone please help me out in auto-generating a property in a class in a following format: public System.Int64 RollNumber { get { System.Int64 rollNo = (System.Int64 )this["@roll_number"]; return rollNo; } } I am able to generate the property with the return statement and the other stuff, but i am not able to Generate the assignment statement i,e : System.Int64 rollNo = (System.Int64 )this["@roll_number"]; Please Help. Thanks, Ramesh