Activity overview
Latest activity by kentzhou
Here is an example:
bool istrue = (CS$<>9__CachedAnonymousMethodDelegate8 == null) && Enumerable.All<FrameworkElement>(allParents, CS$<>9__CachedAnonymousMethodDelegate8);
[CompilerGenerated]
private static Func<FrameworkElement, bool> CS$<>9__CachedAnonymousMethodDelegate8;
what's the possible original code with lambda expression for above disassembled code? / comments
Here is an example:
bool istrue = (CS$<>9__CachedAnonymousMethodDelegate8 == null) && Enumerable.All<FrameworkElement>(allParents, CS$<>9__CachedAnonymousMethodDelegate8);
[CompilerGenerated]
priva...
Reflector exception
When I tried to use reflect to export a assembly, I got following exception:
System.InvalidOperationException: Invalid branching statement for condition expression with target offset 00D1. ---> Sma...
How to change the loading .NET framwork version?
When open Reflector at first time, it will ask you to choose a version of NET Framewrok. Suppose I choose to .NET 3.5. Then for some reason, I want to change the loading framework to another versio...
disassembled Source code can be read for anonymouse type?
I use NET reflector to disassemble a code for WPF as blow:
this.ExpandStoryboard = (VisualStateManager.GetVisualStateGroups(child) as Collection<VisualStateGroup>).Where<VisualStateGroup>(delegate ...