[Mono-bugs] [Bug 62910][Cri] New - missing method Microsoft.VisualBasic.CompilerServices.Utils.CopyArray(Array arySrc, Array aryDest)

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 12 Aug 2004 01:17:48 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by smeegoan@yahoo.com.br.

http://bugzilla.ximian.com/show_bug.cgi?id=62910

--- shadow/62910	2004-08-12 01:17:48.000000000 -0400
+++ shadow/62910.tmp.31533	2004-08-12 01:17:48.000000000 -0400
@@ -0,0 +1,77 @@
+Bug#: 62910
+Product: Mono: Class Libraries
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Critical
+Component: VB Runtime
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: smeegoan@yahoo.com.br               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: missing method Microsoft.VisualBasic.CompilerServices.Utils.CopyArray(Array arySrc, Array aryDest)
+
+Please fill in this template when reporting a bug, unless you know what you
+are doing.
+Description of Problem:
+
+
+Steps to reproduce the problem:
+1. compile the following code:
+
+Module Module1
+
+    Sub Main()
+        Dim a() As String = {"1", "2", "3"}
+        Console.WriteLine(a.Length)
+        ReDim Preserve a(3)
+        Console.WriteLine(a.Length)
+
+    End Sub
+
+End Module
+
+2. run with .net:
+
+"C:\Documents and Settings\Pedro\Os meus documentos\Visual S
+tudio Projects\NET\ConsoleApplication1\bin\ConsoleApplication1.exe"
+3
+4
+
+3. run with mono:
+
+mono "C:\Documents and Settings\Pedro\Os meus documentos\Vis
+ual Studio Projects\NET\ConsoleApplication1\bin\ConsoleApplication1.exe"
+
+** (C:\Documents and Settings\Pedro\Os meus documentos\Visual Studio
+Projects\NE
+T\ConsoleApplication1\bin\ConsoleApplication1.exe:5444): WARNING **:
+Missing met
+hod CopyArray in assembly C:\Documents and Settings\Pedro\Os meus
+documentos\Vis
+ual Studio Projects\NET\ConsoleApplication1\bin\ConsoleApplication1.exe typeref
+index 5
+
+This application has requested the Runtime to terminate it in an unusual way.
+Please contact the application's support team for more information.
+
+C:\Documents and Settings\Pedro\Os meus documentos\Visual Studio
+Projects\NET\SW
+F Widgets\bin\Debug>
+
+
+Actual Results:
+the application crashes
+
+Expected Results:
+should copy the array
+
+How often does this happen? 
+always
+
+Additional Information: