Discuss the difference between constants and read-only variables
Constant fields are created using const keyword and their value remains the same throughout the program. The Read-only fields are created using a read-only keyword and their value can be changed. Const is a compile-time constant while Read-only is a runtime constant. In .NET interviews, when discussing the difference between constants and read-only variables, it’s … Read more