Ticket #45 (closed defect: fixed)
Multiple Attributes Cause Slow Performance
| Reported by: | bpelton@… | Owned by: | rauchy |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Code Layout | Version: | |
| Severity: | normal | Keywords: | performance |
| Cc: |
Description
Originally asked here: http://www.rauchy.net/regionerate/forums/viewtopic.php?f=6&t=181
Having multiple attributes causes significant delay in regionerating classes.
A simple test is:
namespace MyApp.Core.Entities
{
class Test
{
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
[Obsolete]
public object A
{
get { return "A"; }
}
}
}
The layout does not seem to be the issue as it occurs with various layouts and the default layout.
Change History
Note: See
TracTickets for help on using
tickets.