using System; namespace DiscUtils { /// /// Converts a time to/from UTC. /// /// The time to convert. /// true to convert FAT time to UTC, false to convert UTC to FAT time. /// The converted time. public delegate DateTime TimeConverter(DateTime time, bool toUtc); }