Hi,
I'm using EA only for a few weeks now and so do not have too much experience with that tool. Maybe someone can help me with my following problem:
I'm trying to roundtrip engineer a project written in C#.
There I've got the following simple class structure:
* CLASS_A is BASE of CLASS_B
* CLASS_A defines some methods as virtual (but note pure virtual).
When I forward engineer these classes, the these methods of CLASS_A are also generated in CLASS_B.
How can I avoid this so that these methods are NOT generated?
Note:
In the class diagram within EA, these methods are NOT listed at CLASS_B.
Another question:
When generating enumerations in C# I'd like to have the following code generated:
public enum SortOrder
{
Ascending,
Descending
}
But the following is generated by EA:
public enum SortOrder : int
{
Ascending,
Descending
}
How can I avoid the ": int" from appearing?
Any hint or help is very appreciated!

Thanks in advance!