You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unless it is contributed by someone, it will not be added to ILSpy due to limited resources. JetBrains is a big company, we are three developers. Contributions are very welcome!
If anyone wants to implement it, feel free to ask questions in our gitter channel.
MVC Source Code:
base.ViewBag.Url = url;
because
base.ViewBag is dynamic type,
so ,expect
((dynamic) base.ViewBag).Url = url;
ilspy:
if (UserCenterController.o__SiteContainer6.<>p__Site7 == null) { UserCenterController.o__SiteContainer6.<>p__Site7 = CallSite<Func<CallSite, object, string, object>>.Create(Binder.SetMember(CSharpBinderFlags.None, "Url", typeof(UserCenterController), new CSharpArgumentInfo[] { CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.None, null), CSharpArgumentInfo.Create(CSharpArgumentInfoFlags.UseCompileTimeType, null) })); } UserCenterController.o__SiteContainer6.<>p__Site7.Target(UserCenterController.o__SiteContainer6.<>p__Site7, base.ViewBag, arg);
JustDecompile is support the decompile dynamic Type code ,This is very common in the MVC project. Do you have any plans
The text was updated successfully, but these errors were encountered: