Hello,

I am trying to use the SignalR libraries (from Greg Shackles' GitHub repo)
for an ASP.NET client, but the ConcurrentDictionary (from mscorlib) used in
SignalR's Connection class is throwing a ExecutionEngineException on
creation.  The exception is coming from SplitOrderedList, which is internal
to mscorlib and forms the core of the ConcurrentDictionary.

The ConcurrentDictionary is created as
    ConcurrentDictionary<string, object>(StringComparer.OrdinalIgnoreCase)
which creates a
    SplitOrderedList<string, KeyValuePair&lt;string,
object>>(StringComparer.OrdinalIgnoreCase)

I have seen other posts recommending to specify a comparer to fix the JIT
issue, but this comparer does not seem to fix the issue with the internal
SplitOrderedList.

Any recommendations?

Sly

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/JIT-exception-from-ConcurrentDictionary-tp4655084.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to