Book a Demo

Author Topic: template c# class/operation/property  (Read 2875 times)

Martin_Knotek

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
template c# class/operation/property
« on: September 23, 2007, 09:46:43 pm »
Hi,

I need to change code genarating template for c#:

Class - operation -stereotype/property.

this is standart otput:
public int ArticleParamID
{
get{
return nArticleParamID;
}
set{
nArticleParamID = value;
}
}

im trying put keyword this in the body, to get result like this:

public int ArticleParamID
{
get{
return this.nArticleParamID;
}
set{
this.nArticleParamID = value;
}
}

Bud i cant find any place or template file, where is this part of property generation.

Ithing it is an Operation body template? Bud get/set string is only in Attribute Declaration template.

Thx a lot