AGS.Editor.AutoComplete.ConstructCache C# (CSharp) Метод

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

public static ConstructCache ( Script scriptToCache ) : void
scriptToCache Script
Результат void
        public static void ConstructCache(Script scriptToCache)
        {
            ConstructCache(scriptToCache, false);
        }

Same methods

AutoComplete::ConstructCache ( Script scriptToCache, bool isBackgroundThread ) : void

Usage Example

Пример #1
0
        public void RegisterScriptHeader(string header)
        {
            Script newHeader = new Script("__Plugin" + _editorInterface.pluginID + ".ash", header, true);

            AutoComplete.ConstructCache(newHeader);
            _scriptHeaders.Add(newHeader);
        }
All Usage Examples Of AGS.Editor.AutoComplete::ConstructCache