В этом фрагменте:
class ClassWithConstants
{
private const string ConstantA = "Something";
private const string ConstantB = ConstantA + "Else";
...
}
Есть ли риск оказаться с ConstantB == "Else"
? Или ли настройки выполняются линейно?