Skip to content

Instantly share code, notes, and snippets.

@lgolubyev
Created June 2, 2022 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lgolubyev/02a4373c5e66e3b3ab019102c47be8e4 to your computer and use it in GitHub Desktop.
Save lgolubyev/02a4373c5e66e3b3ab019102c47be8e4 to your computer and use it in GitHub Desktop.
namespace System {
public struct TimeOnly {
public TimeOnly(int hour, int minute, int second, int millisecond, int microsecond);
public int Microsecond { get; }
public int Nanosecond { get; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment