InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A Constant And A Static Readonly Field? |
|
Answer» A static READONLY FIELD is very SIMILAR to a constant, except that the C# compiler does not have ACCESS to the value of a static read-only field at compile TIME, only at run time. A static readonly field is very similar to a constant, except that the C# compiler does not have access to the value of a static read-only field at compile time, only at run time. |
|