In which location can you set the value of a static readonly member variable within a static class?
Explanation
Static readonly fields in a static class can only be assigned a value during their declaration or within a static constructor (which is a parameterless constructor). Therefore, the correct place to assign such values is inside the default (static) constructor.