Contact: aviboots(AT)netvision.net.il
39,924 questions
51,857 answers
573 users
using System; class Program { static void Main() { const int X = 20; Console.Write(X); // error CS0131: The left-hand side of an assignment must be a variable, // a property or an indexer // X = 11; } } /* run: 20 */