Is there a difference between having a private const variable or a private static readonly variable in C# (other than having to assign the co
private const
private static readonly
co
In use? Not really. Consts are evaluated at compile time, whereas readonly are evaluated at runtime. You can also assign a readonly variable a value in the constructor.