LINQ causing my obfuscator to break
- by JL
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.