UPD: Like @JoeTheDestroyer noticed - linq already whitelisted, but not listed in usings;
So, I changed code to wrap original System.Linq methods.
It allows to use linq as extentions and also (quite unexpected) enables query syntax (from a in list select a.b)
https://gist.github.com/krypt-lynx/3b46d5737f5e98ea22d062b963c2e713
It is 1519 chars long and contains most often used methods (at least, by me):
public static...
Linq Wrapper
So, I changed code to wrap original System.Linq methods.
It allows to use linq as extentions and also (quite unexpected) enables query syntax (from a in list select a.b)
https://gist.github.com/krypt-lynx/3b46d5737f5e98ea22d062b963c2e713
It is 1519 chars long and contains most often used methods (at least, by me):
public static...
Linq Wrapper