Quellcode durchsuchen

2001-12-19 Gaurav Vaish <[email protected]>

* AUTHORS: Ha ha, having fun time.

* ListItem.cs  -- needed because of visibility issues(?)

svn path=/trunk/mcs/; revision=1641
Gaurav Vaish vor 24 Jahren
Ursprung
Commit
5cdecdb151
2 geänderte Dateien mit 26 neuen und 0 gelöschten Zeilen
  1. 1 0
      mcs/AUTHORS
  2. 25 0
      mcs/class/System.Web/System.Web.UI.WebControls/ListItem.cs

+ 1 - 0
mcs/AUTHORS

@@ -2,6 +2,7 @@ C# Compiler:
 	Miguel de Icaza ([email protected])
 
 Class Libraries:
+	Gaurav Vaish <[email protected]>
 	Jeff Stedfast ([email protected])
 	Joe Shaw ([email protected])
 	Miguel de Icaza ([email protected])

+ 25 - 0
mcs/class/System.Web/System.Web.UI.WebControls/ListItem.cs

@@ -0,0 +1,25 @@
+/**
+ * Namespace: System.Web.UI.WebControls
+ * Class:     ListItem
+ *
+ * Author:  Gaurav Vaish
+ * Maintainer: [email protected]
+ * Contact: <[email protected]>, <[email protected]>
+ * Implementation: yes
+ * Status:  10%
+ *
+ * (C) Gaurav Vaish (2001)
+ */
+
+using System;
+using System.Collections;
+using System.Web;
+using System.Web.UI;
+
+namespace System.Web.UI.WebControls
+{
+	public class ListItem : IStateManager, IParserAccessor, IAttributeAccessor
+	{
+		
+	}
+}