1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
// CS0150: A constant value is expected // Line : 14 using System; public class Blah { static readonly string Test; public static void Main () { string s = null; switch (s) { case Blah.Test: break; } } }