LINQ problem on remote machine

Posted by HaMMeR on Stack Overflow See other posts from Stack Overflow or by HaMMeR
Published on 2010-06-16T08:22:40Z Indexed on 2010/06/16 8:32 UTC
Read the original article Hit count: 221

Filed under:
|
|

I am using LINQ expressions in my code

like this

var obj = Collection.Single(collection => (collection.ShortName.Equals("AAA")));

The problem is that this line works fine for me, no problems.

But when I upload the same executable to some remote machine with same 32 bit Windows XP. The code execution is just stopping at this line of source.

Can anyone help me.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET