Here is my class :
namespace My.Core
{
    public static class Constants
    {
        public const string Layer_ver_const = "23";
        public const string apiHash_const = "111111";
    }
}
Now i want to set conditional value for apiHash_const.
Mean :   
if(Layer_ver_const == "23")
{
  apiHash_const = "111111";
}
else if(Layer_ver_const == "50")
{
  apiHash_const = "222222";
}
else
{
  apiHash_const = "333333";
}
How can i do that?
 
     
     
     
     
    