Question:What is the purpose of the readonly keyword in C#?
A It makes a field immutable after initialization.
B It prevents a field from being serialized.
C It restricts a variable's scope.
D It creates a constant variable.
+ AnswerA
+ Explanation
+ Report