2005-08-19 Satya Sudha K <ksathyasudha@novell.com>
[mono.git] / mcs / class / Microsoft.VisualBasic / Test / standalone / 6991.vb
index 2d2db8d8c9f42bccea92fc7c1b3012465cad17a6..00a8c489514086d19722e6d6c77ea05b99ce3ab2 100644 (file)
@@ -1,37 +1,32 @@
-  '\r
-  ' Copyright (c) 2002-2003 Mainsoft Corporation.\r
-  '\r
-  ' Permission is hereby granted, free of charge, to any person obtaining a\r
-  ' copy of this software and associated documentation files (the "Software"),\r
-  ' to deal in the Software without restriction, including without limitation\r
-  ' the rights to use, copy, modify, merge, publish, distribute, sublicense,\r
-  ' and/or sell copies of the Software, and to permit persons to whom the\r
-  ' Software is furnished to do so, subject to the following conditions:\r
-  ' \r
-  ' The above copyright notice and this permission notice shall be included in\r
-  ' all copies or substantial portions of the Software.\r
-  ' \r
-  ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
-  ' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r
-  ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r
-  ' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r
-  ' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\r
-  ' FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\r
-  ' DEALINGS IN THE SOFTWARE.\r
   '
-
-
-'When PathName is not found, A zero-length string ("") is returned if \r
-Imports Microsoft.VisualBasic.FileSystem\r
-\r
-Public Class TestClass\r
-    Public Function Test() As String\r
-        Dim str1 As String\r
-\r
-        'check if directory has files\r
-        str1 = Dir(System.IO.Directory.GetCurrentDirectory() + "\data\notfound")\r
-        If str1 <> "" Then Return "failed to check that directory not found"\r
-\r
-        Return "success"\r
-    End Function\r
-End Class\r
+  ' Copyright (c) 2002-2003 Mainsoft Corporation.
+  '
+  ' Permission is hereby granted, free of charge, to any person obtaining a
+  ' copy of this software and associated documentation files (the "Software"),
+  ' to deal in the Software without restriction, including without limitation
+  ' the rights to use, copy, modify, merge, publish, distribute, sublicense,
+  ' and/or sell copies of the Software, and to permit persons to whom the
+  ' Software is furnished to do so, subject to the following conditions:
+  ' 
+  ' The above copyright notice and this permission notice shall be included in
+  ' all copies or substantial portions of the Software.
+  ' 
+  ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+  ' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+  ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+  ' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+  ' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+  ' FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
+  ' DEALINGS IN THE SOFTWARE.
+  '
+'When PathName is not found, A zero-length string ("") is returned if 
+Imports Microsoft.VisualBasic.FileSystem
+Public Class TestClass
+    Public Function Test() As String
+        Dim str1 As String
+        'check if directory has files
+        str1 = Dir(System.IO.Directory.GetCurrentDirectory() + "/data/notfound")
+        If str1 <> "" Then Return "failed to check that directory not found"
+        Return "success"
+    End Function
+End Class