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