Betzalel.SimpleMulticastAnalyzer.Infrastructure.HighResolutionTimer.Initialize C# (CSharp) 메소드

Initialize() 개인적인 메소드

private Initialize ( ) : void
리턴 void
        private void Initialize()
        {
            this.mode = TimerMode.Periodic;
              this.period = Capabilities.periodMin;
              this.resolution = 1;

              running = false;

              timeProcPeriodic = new TimeProc(TimerPeriodicEventCallback);
              timeProcOneShot = new TimeProc(TimerOneShotEventCallback);
              tickRaiser = new EventRaiser(OnTick);
        }