2003-09-22 <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / NumberObject.cs
1 //
2 // NumberObject.cs:
3 //
4 // Author: Cesar Octavio Lopez Nataren
5 //
6 // (C) 2003, Cesar Octavio Lopez Nataren, <cesar@ciencias.unam.mx>
7 //
8
9 using System;
10
11 namespace Microsoft.JScript {
12         
13         public class NumberObject : JSObject {
14
15                 public new Type GetType ()
16                 {
17                         throw new NotImplementedException ();
18                 }
19         }
20 }