Re: [Mono-list] Is this a common error that someone has a hint about?

2008-10-10 Thread Maser, Dan
No, I'm completely unable to create a test case...nothing else I seem to do reproduces the problem tho in my full app it happens every time. For more info - this error happens not when the offending line is excuted but instead the exception is thrown before the entire function is even run.

Re: [Mono-list] Is this a common error that someone has a hint about?

2008-10-10 Thread Paolo Molaro
On 10/08/08 Maser, Dan wrote: I'm using RHEL4 and I rebuilt my mono from the svn head today. When I run my app (which was working a month ago) I get this fatal exception I've not seen before. Does it look familiar to anyone? If there are some ideas I'd try them before trying to make a

Re: [Mono-list] Is this a common error that someone has a hint about?

2008-10-10 Thread Paolo Molaro
On 10/10/08 Maser, Dan wrote: If I send you the whole IL of that function would that do anything? I'd gladly give you the whole app but it's HUGE and requires dozens of supporting libs special environment stuff to run. Yes, the IL of the function may be enough (tell us also what kind of

Re: [Mono-list] Is this a common error that someone has a hint about?

2008-10-10 Thread Maser, Dan
Here's the IL. It's a member function of a class that is not generic. Just to reiterate if I comment out (or even slightly alter) the source code line that generated the IL near L_0123 the problem goes away. .method public hidebysig instance string GetElapsedTimeString() cil managed {

Re: [Mono-list] Is this a common error that someone has a hint about?

2008-10-09 Thread Maser, Dan
I've got some more info now. This happens only when I compile with Visual Studio on Windows and then run that binary under mono on my linux machine. Thru trial and error I narrowed it down to this simple code: String nsecString = 0 + someOtherStringVariable;

[Mono-list] Is this a common error that someone has a hint about?

2008-10-08 Thread Maser, Dan
I'm using RHEL4 and I rebuilt my mono from the svn head today. When I run my app (which was working a month ago) I get this fatal exception I've not seen before. Does it look familiar to anyone? If there are some ideas I'd try them before trying to make a test app to reproduce the problem