CSPspEmu.Core.Cpu.InstructionCache.MethodCompilerThread.MethodCompilerThread C# (CSharp) Метод

MethodCompilerThread() публичный Метод

public MethodCompilerThread ( CpuProcessor CpuProcessor, MethodCache MethodCache ) : System
CpuProcessor CpuProcessor
MethodCache MethodCache
Результат System
        public MethodCompilerThread(CpuProcessor CpuProcessor, MethodCache MethodCache)
        {
            this.CpuProcessor = CpuProcessor;
            this.MethodCache = MethodCache;
            this.Thread = new Thread(Main)
            {
                IsBackground = true
            };
            this.Thread.Start();
        }