Book a Demo

Author Topic: Add <remarks> tag in c# xml comment  (Read 4387 times)

jepessen

  • EA User
  • **
  • Posts: 106
  • Karma: +1/-1
    • View Profile
Add <remarks> tag in c# xml comment
« on: June 15, 2016, 06:59:34 am »
Hi.

When I want to describe a property in C# class in EA, I put description in its notes, obtaining, when generating source code, something like:

Code: [Select]
/// <summary>
/// code comment
/// inside summary
/// </summary>

Is there a way to create both a summary section and a remarks section directly from enterprise architect, so when I generate source code I obtain:

Code: [Select]
/// <summary>
/// inside summary
/// </summary>
/// <remarks>
/// detailed property description.
/// </remarks>