Q37
What is the correct way to declare and initialize a constant in C#?
A.
int const VALUE = 10;
B.
const VALUE = 10;
C.
VALUE = const 10;
D.
const int VALUE = 10;
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board