CSPspEmu.Hle.Managers.HleInterruptManager.HleInterruptManager C# (CSharp) Метод

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

private HleInterruptManager ( ) : System.Collections.Generic
Результат System.Collections.Generic
        private HleInterruptManager()
        {
            for (int n = 0; n < InterruptHandlers.Length; n++)
            {
                InterruptHandlers[n] = new HleInterruptHandler(
                    this,
                    (PspInterrupts)n,
                    HleCallbackManager
                );
            }
        }