I am supporting two different languages at my web application. So I have 2 different string for everything. I am asking that what is the best way of defining static texts. I mean are there any performance difference between these 4 four examples or any other better way?
static private string srLang1 = "Username";
private string srLang2 = "Username";
static string srLang3 = "Username";
string srLang4 = "Username";
const string srLang5="Username";
private const string srLang6 = "Username";