Changes

C Sharp Variables and Constants

58 bytes added, 18:10, 11 January 2008
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''.