我们在静态类中定义了常量以及类似的函数
public const string MSG_1 = "New error {0}"
public const string MSG_2 = "Random error occurred {1}"
public static string Message_ToForm(string MType, string[] vals)
public static GetNewType(string MType)
{
switch (MType)
{
case "MSG_1" : ...........
}
}
我需要从像 Message_ToForm("MSG_1", string[]); 这样的程序中调用它
如何转换它以从字符串类型中获取常量的值?基本上,当“MSG_1”通过时,它应该将我返回为“新错误 {0}?