Bamboo.Prevalence.AlarmClock.PauseAt C# (CSharp) Метод

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

This method can be used for testing date sensitive code.
You should not call this method in production code. It's meant to be used in test cases only.
public PauseAt ( System.DateTime date ) : void
date System.DateTime the specific date/time value the clock should be set to, /// this will be the value returned by
Результат void
		public void PauseAt(DateTime date)
		{
			_paused = true;
			_now = date;
		}
	}