1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 08:30:25 +02:00

Make conversion operators use standard method matcher

This commit is contained in:
Brian Fiete 2022-01-17 16:14:40 -05:00
parent 15e1986a1c
commit c7d2d2e9bd
8 changed files with 280 additions and 398 deletions

View file

@ -154,7 +154,7 @@ namespace System
//
public this(int year, int month, int day)
{
this.dateData = (uint64)DateToTicks(year, month, day);
this.dateData = (.)DateToTicks(year, month, day).Value;
}
public this(int year, int month, int day, int hour, int minute, int second)