/// <summary> /// Gets the localized message identified by the specified DomMsgID. /// </summary> public static string GetString(DomMsgID id) { return DomSR.ResMngr.GetString(id.ToString()); }
internal static string GetString(DomMsgID id) { return((string)typeof(AppResources).GetProperties().Where(x => x.Name == id.ToString() && x.PropertyType == typeof(string)).FirstOrDefault()?.GetValue(null)); }
/// <summary> /// Gets the localized message identified by the specified DomMsgID. /// </summary> public static string GetString(DomMsgID id) { return(ResMngr.GetString(id.ToString())); }