[mono-config] use right type for result of strlen
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / ListSelectionMode.cs
index d5c886a0ac749810df50925dab0113a18afd89f6..64ee4865aa6a0c75dcb9be7412b923e8764022d3 100644 (file)
@@ -1,4 +1,9 @@
-
+//
+// System.Web.UI.WebControls.ListItemType.cs
+//
+// Author: Duncan Mak (duncan@novell.com)
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-/**\r
- * Namespace: System.Web.UI.WebControls\r
- * Enumeration:     ListSelectionMode\r
- * \r
- * Author:  Gaurav Vaish\r
- * Maintainer: gvaish@iitk.ac.in\r
- * Contact: <my_scripts2001@yahoo.com>, <gvaish@iitk.ac.in>\r
- * Implementation: yes\r
- * Status:  100%\r
- * \r
- * (C) Gaurav Vaish (2001)\r
- */\r
-\r
-namespace System.Web.UI.WebControls\r
-{\r
-       public enum ListSelectionMode\r
-       {\r
-               Single,\r
-               Multiple\r
-       }\r
-}\r
+
+using System;
+
+namespace System.Web.UI.WebControls {
+
+       public enum ListSelectionMode
+       {
+                  Single,
+                  Multiple
+       }
+}