Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - DaveK

Pages: [1]
1
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:

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.

Pages: [1]