Is there any difference between the following?
class C { // One: public static readonly int ValueAsAMember = 42; // Two: public static int V
readonly is nice to use on things that can only be changed in your constructor. Examples of this is typical services as interfaces when you are following the TDD pattern.
readonly
In your example const is best, it's a constant after all.
const
Cheers