I am currently using Mono Cecil to extract data from C# projects. Now I need to check whether a field is read or written to in each method.
How can tell from the CIL instruction that a field is being read or written to?
Cos I doubt there a library in Mono Cecil similar to Assignment in Eclipse's JDT that allows me to extract the left hand side and right hand side. If there is, then I can just work from there.