mirror of
https://github.com/Thealexbarney/LibHac.git
synced 2024-11-14 10:49:41 +01:00
12 lines
No EOL
406 B
C#
12 lines
No EOL
406 B
C#
using System;
|
|
|
|
namespace DiscUtils
|
|
{
|
|
/// <summary>
|
|
/// Converts a time to/from UTC.
|
|
/// </summary>
|
|
/// <param name="time">The time to convert.</param>
|
|
/// <param name="toUtc"><c>true</c> to convert FAT time to UTC, <c>false</c> to convert UTC to FAT time.</param>
|
|
/// <returns>The converted time.</returns>
|
|
public delegate DateTime TimeConverter(DateTime time, bool toUtc);
|
|
} |