BadScript 2
Loading...
Searching...
No Matches
BadDate.cs
Go to the documentation of this file.
2
4
5public class BadDate : BadNative<DateTimeOffset>, IBadDate
6{
7 public static BadDate Now => new BadDate(DateTimeOffset.Now);
8 public static BadDate UtcNow => new BadDate(DateTimeOffset.Now);
10
11 public BadDate(DateTimeOffset value) : base(value)
12 {
13 }
14}
static BadClassPrototype Prototype
Definition BadDate.cs:9
Implements a Class Prototype for the BadScript Language.
Contains the Native Runtime Objects.
Definition BadBoolean.cs:6