Attributes (and descriptions) of properties in generated partial classes
When a generator creates properties in a partial class it usually doesn't know anything about the attributes the application will need on these properties.
I could manually set the attributes after the code is generated. But they would be lost as soon as I need to regenerate the code.
The best solution would be partial (stub) properties in a peer partial class that is not generated and thus never destroyed. But they do not exist in framework 2.0.
Any idea how to come out of this dilemma.
orbit

