ServicePoint: Use DateTime.UtcNow internally, which avoids looking up the timezone...
[mono.git] / mcs / class / System / System.ComponentModel / EditorBrowsableState.cs
old mode 100755 (executable)
new mode 100644 (file)
index 750b524..42d5051
@@ -1,11 +1,11 @@
-//\r
-// ProjectData.cs\r
-//\r
-// Author:\r
-//   Martin Adoue (martin@cwanet.com)\r
-//\r
-// (C) 2002 Martin Adoue\r
-//\r
+//
+// ProjectData.cs
+//
+// Author:
+//   Martin Adoue (martin@cwanet.com)
+//
+// (C) 2002 Martin Adoue
+//
 
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // 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
-using System;\r
-\r
-namespace System.ComponentModel\r
-{\r
-\r
-       /// <summary>\r
-       /// Specifies the browsable state of a property or method from within an editor.\r
-       /// </summary>\r
-       public enum EditorBrowsableState \r
-       {\r
-               /// <summary>\r
-               /// The property or method is always browsable from within an editor.\r
-               /// </summary>\r
-               Always = 0,\r
-               /// <summary>\r
-               /// The property or method is never browsable from within an editor.\r
-               /// </summary>\r
-               Never = 1,\r
-               /// <summary>\r
-               /// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.\r
-               /// </summary>\r
-               Advanced = 2\r
-       }\r
-\r
-}\r
+
+using System;
+
+namespace System.ComponentModel
+{
+
+       /// <summary>
+       /// Specifies the browsable state of a property or method from within an editor.
+       /// </summary>
+       public enum EditorBrowsableState 
+       {
+               /// <summary>
+               /// The property or method is always browsable from within an editor.
+               /// </summary>
+               Always = 0,
+               /// <summary>
+               /// The property or method is never browsable from within an editor.
+               /// </summary>
+               Never = 1,
+               /// <summary>
+               /// The property or method is a feature that only advanced users should see. An editor can either show or hide such properties.
+               /// </summary>
+               Advanced = 2
+       }
+
+}