I was mildly surprised when the compiler complained about this:
public class UsefulClass { public const String RatingName = @\"Ratings\\rating\"; } publ
Because const in c# are implicitly of static type. And As static members can be accessed only on class member and not on instance, const cannot too.