AssetBundleGraph.IntegratedGUIBundleConfigurator.ValidateBundleNameTemplate C# (CSharp) Méthode

ValidateBundleNameTemplate() public static méthode

public static ValidateBundleNameTemplate ( string bundleNameTemplate, System.Action NullOrEmpty ) : void
bundleNameTemplate string
NullOrEmpty System.Action
Résultat void
        public static void ValidateBundleNameTemplate(string bundleNameTemplate, Action NullOrEmpty)
        {
            if (string.IsNullOrEmpty(bundleNameTemplate)){
                NullOrEmpty();
            }
        }