Templated C# 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.