From 69b64481283165cae3a7f44475b81e00979f13f4 Mon Sep 17 00:00:00 2001 From: mohe2015 Date: Sun, 8 Oct 2017 22:05:05 +0200 Subject: [PATCH] Fix order of transforms --- ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs b/ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs index 55f20d3dc..5810602fe 100644 --- a/ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs +++ b/ICSharpCode.Decompiler/CSharp/CSharpDecompiler.cs @@ -121,9 +121,9 @@ namespace ICSharpCode.Decompiler.CSharp ) } }, + new ProxyCallReplacer(), new DelegateConstruction(), new AssignVariableNames(), - new ProxyCallReplacer(), }; }