I need to find out LINQ queries while parsing C# files (with Irony Codeparser), because the parser does not support LINQ – therefore I have to exclude or modify such files, where LINQ occurs.
It would be no problem for me to go through the files with a StreamReader before parsing them or write modified copies of such files in the cache.
Does anyone have any suggestions or solutions for this problem?
In general, it is not possible. How you will recognize
.Select(...)is LINQ or Method of concrete class (with simple parser)?