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/fd8accba740284033a8f4c2605ae20e8 to your computer and use it in GitHub Desktop.
Save lgolubyev/fd8accba740284033a8f4c2605ae20e8 to your computer and use it in GitHub Desktop.
namespace System {
public struct DateTime {
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int microsecond);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int microsecond, System.DateTimeKind kind);
public DateTime(int year, int month, int day, int hour, int minute, int second, int millisecond, int microsecond, System.Globalization.Calendar calendar);
public int Microsecond { get; }
public int Nanosecond { get; }
public DateTime AddMicroseconds(double value);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment