Axiom.Core.MeterManager.GetMeterById C# (CSharp) Method

GetMeterById() protected method

protected GetMeterById ( int id ) : TimingMeter
id int
return TimingMeter
		protected TimingMeter GetMeterById( int id )
		{
			TimingMeter meter;
			metersById.TryGetValue( id, out meter );
			Debug.Assert( meter != null, string.Format( "Meter for id {0} is not in the index", id ) );
			return meter;
		}