Symphonary.MidiInfo.GetAllTimingInformation C# (CSharp) Метод

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

Gets all the timing information: delta ticks per quarter note, tempo (in BPM and nanoseconds), microseconds per quarter note, miliseconds per quarter note, miliseconds per tick, time signature (numerator and denominator)
private GetAllTimingInformation ( ) : void
Результат void
        private void GetAllTimingInformation()
        {
            i_DeltaTicksPerQuarterNote = midiEventCollection.DeltaTicksPerQuarterNote;
            GetAllTimingInformationHelper_GetTempo();
            d_MilisecondsPerQuarterNote = i_MicrosecondsPerQuarterNote / 1000.0;
            d_MilisecondsPerTick = d_MilisecondsPerQuarterNote / i_DeltaTicksPerQuarterNote;
            GetAllTimingInformationHelper_GetTimeSignature();
        }