AssetBundleGraph.IntegratedGUIBundleConfigurator.ValidateBundleNameTemplate C# (CSharp) 메소드

ValidateBundleNameTemplate() 공개 정적인 메소드

public static ValidateBundleNameTemplate ( string bundleNameTemplate, System.Action NullOrEmpty ) : void
bundleNameTemplate string
NullOrEmpty System.Action
리턴 void
        public static void ValidateBundleNameTemplate(string bundleNameTemplate, Action NullOrEmpty)
        {
            if (string.IsNullOrEmpty(bundleNameTemplate)){
                NullOrEmpty();
            }
        }