forked from PureKrome/EcmaScript.NET
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUndefined.cs
More file actions
34 lines (27 loc) · 911 Bytes
/
Copy pathUndefined.cs
File metadata and controls
34 lines (27 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//------------------------------------------------------------------------------
// <license file="Undefined.cs">
//
// The use and distribution terms for this software are contained in the file
// named 'LICENSE', which can be found in the resources directory of this
// distribution.
//
// By using this software in any fashion, you are agreeing to be bound by the
// terms of this license.
//
// </license>
//------------------------------------------------------------------------------
using System;
namespace EcmaScript.NET
{
/// <summary>
/// This class implements the Undefined value in JavaScript.
/// </summary>
public sealed class Undefined
{
public static readonly object Value = new Undefined ();
private Undefined ()
{
;
}
}
}