34,333
edits
Changes
→What is a C# Constant?
<pre>
const int interestRate;// Invalid - a const must be initialized at creation time
</pre>
will result in a compilation error along the lines of ''A const field requires a value to be provided''.