Posted By


mtelligent on 05/02/09

Tagged


Statistics


Viewed 115 times
Favorited by 0 user(s)

Templated Property


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. private [[Data Type]] _[[Property Name]];
  2. public [[Data Type]] [[Property Name]]
  3. {
  4. get { return _[[Property Name]]; }
  5. set { _[[Property Name]] = value; }
  6. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.