AjaxControlToolkit.Localization.FormatScriptName C# (CSharp) Method

FormatScriptName() static private method

static private FormatScriptName ( string localeKey ) : string
localeKey string
return string
        static string FormatScriptName(string localeKey)
        {
            if(String.IsNullOrEmpty(localeKey))
                return Constants.LocalizationScriptName;

            return Constants.LocalizationScriptName + "." + localeKey;
        }