Possible Duplicate:
C#: Static readonly vs const
Which is preferable in this instance (no pun intended): "const" or "static readonly"?
I changed some const declarations to static readonly after either reading that was better or being adivsed somewhere (quite possibly here on StackOverflow).
Now ReSharper wants to change:
private static readonly int NUMBER_OF_QUARTER_HOURS = 96;
to:
private const int NUMBER_OF_QUARTER_HOURS = 96;
Should I submit or "draw iron"?