Beispiel #1
0
        internal static string Get(STID id)
        {
            string @string = ST._resourceManager.GetString(id.String);

            if (@string == null)
            {
                @string = ST._resourceManager.GetString("Unavailable");
            }
            return(@string);
        }
Beispiel #2
0
        internal static string Get(STID id, params object[] args)
        {
            string text = ST._resourceManager.GetString(id.String);

            if (text == null)
            {
                text = ST._resourceManager.GetString("Unavailable");
            }
            else if (args != null && args.Length != 0)
            {
                text = string.Format(CultureInfo.CurrentCulture, text, args);
            }
            return(text);
        }