LINQ causing my obfuscator to break
Posted
by JL
on Stack Overflow
See other posts from Stack Overflow
or by JL
Published on 2010-04-29T11:58:26Z
Indexed on
2010/04/29
12:07 UTC
Read the original article
Hit count: 261
I have the following LINQ that is causing my obfuscator to break.
.Where(f => f.FileName == fileName).OrderByDescending(f => f.Position).FirstOrDefault();
Is there another way I could reword this LINQ statement to test against my obfuscator?
I've reported the bug, but it could take 1-2 months to fix, so I need to try recode this LINQ in the meantime.
© Stack Overflow or respective owner