[Mono-bugs] [Bug 67264][Maj] Changed - string.ctor with encoding objunimplemented
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Tue, 5 Oct 2004 08:14:34 -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 bmaurer@users.sf.net.
http://bugzilla.ximian.com/show_bug.cgi?id=67264
--- shadow/67264 2004-10-05 05:27:50.000000000 -0400
+++ shadow/67264.tmp.16395 2004-10-05 08:14:34.000000000 -0400
@@ -11,14 +11,13 @@
AssignedTo: bmaurer@users.sf.net
ReportedBy: michael_cohen@maxtor.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
Cc:
-Summary: [PATCH] string.ctor with encoding obj
-unimplemented
+Summary: string.ctor with encoding objunimplemented
Description of Problem:
First, let me apologize. I'm very new to Linux and Mono, but here is the
problem I'm seeing, as best as I can describe it:
I have an assembly (built using .NET on windows), which I reference in a
GTK# project running on Mono/Linux. During the execution of a method in
@@ -162,6 +161,12 @@
worked by luck, because the return value from enc.GetString() happened
to be left in %eax.
String ctors can't be implemented that way, because they are
variable-sized objects.
Michael: you should use the Encoding API directly to work around the
issue until we fix it: it's going to be faster for your test case anyway.
+
+------- Additional Comments From bmaurer@users.sf.net 2004-10-05 08:14 -------
+*wow* am an idiot. Yeah, i guess it must be unmanaged. Back to the
+drawing board.
+
+Sorry about that.