Tagged Questions

2
votes
5answers
374 views

Why does C# limit the set of types that can be declared as const?

Compiler error CS0283 indicates that only the basic POD types (as well as strings, enums, and null references) can be declared as const. Does anyone have a theory on the rationale …