ACR_AssemblyLoader.ACR_AssemblyLoader.ScriptMain C# (CSharp) Method

ScriptMain() public method

public ScriptMain ( [ ScriptParameters, [ DefaultReturnCode ) : Int32
ScriptParameters [
DefaultReturnCode [
return System.Int32
        public Int32 ScriptMain([In] object[] ScriptParameters, [In] Int32 DefaultReturnCode)
        {
            int Cmd = (int)ScriptParameters[0]; // ScriptParameterTypes[0] is typeof(int)

            switch (Cmd)
            {

                case ACR_ASSEMBLY_LOADER_INITIALIZE:
                    {
                        InitializeAssemblyLoader();
                        break;
                    }
            }

            return 0;
        }