Book a Demo

Author Topic: Customize the default output C#  (Read 2630 times)

Carlos Paiva

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Customize the default output C#
« on: December 11, 2011, 03:32:06 am »
Good afternoon everyone.

 My class diagrams are made using the C# language.
 I need to customize the default output C# code for primary properties.
 I want my output like this:

Code: [Select]
namespace ContosoUniversity.DAL
{
    public class Course
    {
        public int CourseID { get; set; }
        public string Title { get; set; }
        public int Credits { get; set; }
        public int DepartmentID { get; set; }
    }
}

Many thanks.

SomersetGraham

  • EA User
  • **
  • Posts: 376
  • Karma: +1/-0
    • View Profile
Re: Customize the default output C#
« Reply #1 on: December 12, 2011, 08:08:14 pm »
Using V12