Skip to content

Instantly share code, notes, and snippets.

View MysticFragilist's full-sized avatar
👋

Samuel Montambault MysticFragilist

👋
View GitHub Profile
@jmsb
jmsb / C# Time Machine
Last active October 9, 2023 14:46
C#.NET Time Machine service, for modifying how a service perceives time.
// Interface for a Date Time Service
public interface IDateTimeService
{
DateTime Now();
DateTime UtcNow();
DateTime Today();
DateTime UtcToday();
}