2008-10-24 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / IndexedString.jvm.cs
1 #if NET_2_0
2 namespace System.Web.UI
3 {
4         [SerializableAttribute]
5         public sealed class IndexedString
6         {
7                 public IndexedString (string s)
8                 {
9                         throw new NotImplementedException ();
10                 }
11                 
12                 public string Value { get { throw new NotImplementedException (); } }
13         }
14 }
15 #endif