CSL.NetworkExtensions.Framework.LocaleExtensions.CreateNetTitleLocalizedString C# (CSharp) Method

CreateNetTitleLocalizedString() public static method

public static CreateNetTitleLocalizedString ( this locale, string key, string label ) : void
locale this
key string
label string
return void
        public static void CreateNetTitleLocalizedString(this Locale locale, string key, string label)
        {
            locale.AddLocalizedString(new Locale.Key
            {
                m_Identifier = "NET_TITLE",
                m_Key = key
            }, label);
        }