Example #1
0
        internal static string Get(SRID id, params object[] args)
        {
            string message = _resourceManager.GetString(id.String);
            if (message != null)
            {
                // Apply arguments to formatted string (if applicable)
                if (args != null && args.Length > 0)
                {
                    message = String.Format(CultureInfo.CurrentCulture, message, args);
                }
            }

            return message;
        }
Example #2
0
        internal static string Get(SRID id, params object[] args)
        {
            string message = _resourceManager.GetString(id.String);

            if (message != null)
            {
                // Apply arguments to formatted string (if applicable)
                if (args != null && args.Length > 0)
                {
                    message = String.Format(CultureInfo.CurrentCulture, message, args);
                }
            }

            return(message);
        }
Example #3
0
 internal static string Get(SRID id)
 {
     return(_resourceManager.GetString(id.String));
 }
Example #4
0
 internal static string Get(SRID id)
 {
     return _resourceManager.GetString(id.String);
 }