CSL.NetworkExtensions.Framework.LocaleExtensions.CreateNetDescriptionLocalizedString C# (CSharp) Метод

CreateNetDescriptionLocalizedString() публичный статический Метод

public static CreateNetDescriptionLocalizedString ( this locale, string key, string label ) : void
locale this
key string
label string
Результат void
        public static void CreateNetDescriptionLocalizedString(this Locale locale, string key, string label)
        {
            locale.AddLocalizedString(new Locale.Key
            {
                m_Identifier = "NET_DESC",
                m_Key = key
            }, label);
        }
    }