2005-08-04 Satya Sudha K <ksathyasudha@novell.com>
[mono.git] / mcs / class / Microsoft.VisualBasic / Test / standalone / 6541.vb
index 4143be7c27dfe78ddaeb9451d1b0a57d4ef4ad50..5403eaeda66e3a0ff8e6971fa951f0049852b71c 100644 (file)
@@ -1,51 +1,43 @@
-  '\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
   '
-
-
-Imports Microsoft.VisualBasic\r
-\r
-Public Class TestClass\r
-    Structure Person\r
-        Const str21 As String = "09876543210987654321"\r
-        Dim int4 As Integer\r
-        Const str3 As String = "abc"\r
-    End Structure\r
-\r
-    Public Function Test() As String\r
-        Dim fn As Integer\r
-        Dim RecLength As Long\r
-        Dim Employee As Person\r
-        \r
-        '// make sure all files are closed\r
-        Microsoft.VisualBasic.FileSystem.Reset()\r
-\r
-\r
-        fn = FreeFile()\r
-        ' Calculate the record length.\r
-        RecLength = Len(Employee)\r
-        FileOpen(fn, "data\random.txt", OpenMode.Random, , , RecLength)\r
-        FileClose(fn)\r
-\r
-        Return "success"\r
-\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.
+  '
+Imports Microsoft.VisualBasic
+Public Class TestClass
+    Structure Person
+        Const str21 As String = "09876543210987654321"
+        Dim int4 As Integer
+        Const str3 As String = "abc"
+    End Structure
+    Public Function Test() As String
+        Dim fn As Integer
+        Dim RecLength As Long
+        Dim Employee As Person
+        
+        '// make sure all files are closed
+        Microsoft.VisualBasic.FileSystem.Reset()
+        fn = FreeFile()
+        ' Calculate the record length.
+        RecLength = Len(Employee)
+        FileOpen(fn, "data\random.txt", OpenMode.Random, , , RecLength)
+        FileClose(fn)
+        Return "success"
+    End Function
+End Class