Ejemplo n.º 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;
        }
Ejemplo n.º 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);
        }
Ejemplo n.º 3
0
 internal static string Get(SRID id)
 {
     return _resourceManager.GetString(id.String);
 }
Ejemplo n.º 4
0
 internal static string Get(SRID id)
 {
     return(_resourceManager.GetString(id.String));
 }