AmandaInterface.Amanda.Amanda C# (CSharp) Метод

Amanda() приватный Метод

private Amanda ( string autorun = null ) : System
autorun string
Результат System
        private Amanda(string autorun = null)
        {
            if (Instance == null)
            {
                Instance = this;
            }

            AmandaHook.InitOptions(true, ""); //empty char will result in amanda loading up amanda.ini
            AmandaHook.CreateInterpreter();
            if (autorun != null) AmandaHook.Load(autorun);
        }