2005-08-04 Satya Sudha K <ksathyasudha@novell.com>
[mono.git] / mcs / class / Microsoft.VisualBasic / Test / standalone / 12312.vb
index 42163323ae4e3c35fe8039eff54933cd475569a3..8c64ddaa6dc82a2fc655240b631aaf08b99efb13 100644 (file)
@@ -1,51 +1,45 @@
-  '\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
-Public Class TestClass\r
-    'The expressions in the argument list can include function calls. \r
-    'As part of preparing the argument list for the call to Choose, \r
-    'the Visual Basic compiler calls every function in every expression. \r
-    'This means that you cannot rely on a particular function \r
-    'not being called if a different expression is selected by Index.\r
-\r
-    Private m_str As String\r
-\r
-    Public Function Test() As String\r
-        Dim i As Integer\r
-        Dim str1 As String\r
-\r
-        i = 2\r
-        str1 = CStr(Choose(i, foo1("a", "b"), foo2("c")))\r
-\r
-        Return str1\r
-    End Function\r
-    Public Function foo1(ByVal val1 As String, ByVal val2 As String) As String\r
-        m_str = m_str & val1 & val2\r
-        Return "foo1" & m_str\r
-    End Function\r
-    Public Function foo2(ByVal val3 As String) As String\r
-        m_str = m_str & val3\r
-        Return "foo2" & m_str\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
+    'The expressions in the argument list can include function calls. 
+    'As part of preparing the argument list for the call to Choose, 
+    'the Visual Basic compiler calls every function in every expression. 
+    'This means that you cannot rely on a particular function 
+    'not being called if a different expression is selected by Index.
+    Private m_str As String
+    Public Function Test() As String
+        Dim i As Integer
+        Dim str1 As String
+        i = 2
+        str1 = CStr(Choose(i, foo1("a", "b"), foo2("c")))
+        Return str1
+    End Function
+    Public Function foo1(ByVal val1 As String, ByVal val2 As String) As String
+        m_str = m_str & val1 & val2
+        Return "foo1" & m_str
+    End Function
+    Public Function foo2(ByVal val3 As String) As String
+        m_str = m_str & val3
+        Return "foo2" & m_str
+    End Function
+End Class