In .NET, using reflection how can I get class variables that are used in a method?
Ex:
class A { UltraClass B = new(..); SupaClass C = new(..
Reflection is primarily an API for inspecting metadata. What you're trying to do is inspect raw IL which is not a supported function of reflection. Reflection just returns IL as a raw byte[] which must be manually inspected.