1
Automation Interface, Add-Ins and Tools / Code Generation Template help
« on: July 18, 2007, 07:19:13 am »
I am trying to modify the C# code generation template and need some help. Currently the templates generate classes for me using the following format:
I want it to look like this:
The end goal I'd like to is to put the opening brace on a separate line throughout the entire class.
Code: [Select]
public Packer Packer{
get{
return Packer;
}
set{
Packer = value;
}
}
I want it to look like this:
Code: [Select]
public Packer Packer
{
get
{
return Packer;
}
set
{
Packer = value;
}
}
The end goal I'd like to is to put the opening brace on a separate line throughout the entire class.