In C # (like PHP) is constimplicit static, so you are not using both keywords together. This is not like C and C ++, where it constdoes not say whether a variable is static or not, just its value cannot be changed.
You declare a constant string as follows:
const string SomeConstant = "abc";
There is a slight difference between fields constand static fields readonly, but both are similar, since you cannot change their values. Details are in this question .