Book a Demo

Author Topic: private (embedded) classes, structs, or enums  (Read 2146 times)

Bernd

  • EA Novice
  • *
  • Posts: 3
  • Karma: +0/-0
    • View Profile
private (embedded) classes, structs, or enums
« on: February 18, 2004, 03:21:55 am »
I am seeking a way to define the model such that the C# code generator creates private (or protected) definitions for a certain class, struct or enumeration within another class like so:

public class X {
  private class Y { // or enum, or struct
     ...
  } // end of Y
  ...
} // end of X

Any clues?
TIA,
Bernd