2005-09-30 Miguel de Icaza <miguel@novell.com>
[mono.git] / mcs / class / FirebirdSql.Data.Firebird / FirebirdSql.Data.Common / GlobalizationHelper.cs
index e2505ffa7577066bf43eea82417efdccb443f0d0..4539eddffdd355cc1fd561ae9e6fa66b8603f5d6 100644 (file)
@@ -1,47 +1,47 @@
-/*\r
- *  Firebird ADO.NET Data provider for .NET and Mono \r
- * \r
- *     The contents of this file are subject to the Initial \r
- *     Developer's Public License Version 1.0 (the "License"); \r
- *     you may not use this file except in compliance with the \r
- *     License. You may obtain a copy of the License at \r
- *     http://www.firebirdsql.org/index.php?op=doc&id=idpl\r
- *\r
- *     Software distributed under the License is distributed on \r
- *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either \r
- *     express or implied.  See the License for the specific \r
- *     language governing rights and limitations under the License.\r
- * \r
- *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez\r
- *  All Rights Reserved.\r
- */\r
-\r
-using System;\r
-using System.Globalization;\r
-\r
-namespace FirebirdSql.Data.Common\r
-{\r
-       internal class GlobalizationHelper\r
-       {\r
-               #region Constructors\r
-\r
-               private GlobalizationHelper()\r
-               {\r
-               }\r
-\r
-               #endregion\r
-\r
-               #region Static Methods\r
-\r
-               public static bool CultureAwareCompare(string strA, string strB)\r
-               {\r
-                       return CultureInfo.CurrentCulture.CompareInfo.Compare(\r
-                               strA,\r
-                               strB,\r
-                               CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth |\r
-                               CompareOptions.IgnoreCase) == 0 ? true : false;\r
-               }\r
-\r
-               #endregion\r
-       }\r
-}\r
+/*
+ *  Firebird ADO.NET Data provider for .NET and Mono 
+ * 
+ *     The contents of this file are subject to the Initial 
+ *     Developer's Public License Version 1.0 (the "License"); 
+ *     you may not use this file except in compliance with the 
+ *     License. You may obtain a copy of the License at 
+ *     http://www.firebirdsql.org/index.php?op=doc&id=idpl
+ *
+ *     Software distributed under the License is distributed on 
+ *     an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either 
+ *     express or implied.  See the License for the specific 
+ *     language governing rights and limitations under the License.
+ * 
+ *  Copyright (c) 2002, 2005 Carlos Guzman Alvarez
+ *  All Rights Reserved.
+ */
+
+using System;
+using System.Globalization;
+
+namespace FirebirdSql.Data.Common
+{
+       internal class GlobalizationHelper
+       {
+               #region Constructors
+
+               private GlobalizationHelper()
+               {
+               }
+
+               #endregion
+
+               #region Static Methods
+
+               public static bool CultureAwareCompare(string strA, string strB)
+               {
+                       return CultureInfo.CurrentCulture.CompareInfo.Compare(
+                               strA,
+                               strB,
+                               CompareOptions.IgnoreKanaType | CompareOptions.IgnoreWidth |
+                               CompareOptions.IgnoreCase) == 0 ? true : false;
+               }
+
+               #endregion
+       }
+}