2003-09-22 <cesar@ciencias.unam.mx>
[mono.git] / mcs / class / Microsoft.JScript / Microsoft.JScript / StringObject.cs
1 //
2 // StringObject.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 StringObject : JSObject {
14
15                 public int length {
16                         get { throw new NotImplementedException (); }
17                 }
18
19                 public override bool Equals (Object obj)
20                 {
21                         throw new NotImplementedException ();
22                 }
23
24                 public override int GetHashCode ()
25                 {
26                         throw new NotImplementedException ();
27                 }
28
29                 public new Type GetType ()
30                 {
31                         throw new NotImplementedException ();
32                 }
33         }
34 }