Replacing a method call via reflection in C# does not work in a Unity environment

In Unity6 (6000.0.7f1), I’ve tried to redirect a method call to my own method using the MethodRedirect extension method from this GitHub repo.

From the Scenario1 example code in the GitHub repo, I produced the following code to test it:

using System;
using System.Reflection;
using UnityEditor;

namespace MethodRedirect
{
    class Scenario1
    {
        [MenuItem("RedirectTo/Scenario1")]
        static void Test()
        {
            UnityEngine.Debug.Log("Redirect : MethodRedirect.Scenario1.InternalInstanceMethod()");
            UnityEngine.Debug.Log("To       : MethodRedirect.Scenario1.PrivateInstanceMethod()");

            Assembly assembly = Assembly.GetAssembly(typeof(Scenario1));
            Type Scenario_Type = assembly.GetType("MethodRedirect.Scenario1");

            MethodInfo Scenario_InternalInstanceMethod = Scenario_Type.GetMethod("InternalInstanceMethod", BindingFlags.Instance | BindingFlags.NonPublic);
            MethodInfo Scenario_PrivateInstanceMethod = Scenario_Type.GetMethod("PrivateInstanceMethod", BindingFlags.Instance | BindingFlags.NonPublic);

            var token = Scenario_InternalInstanceMethod.RedirectTo(Scenario_PrivateInstanceMethod, true);

            // Using "dynamic" type to resolve the following issue in x64 and Release (with code optimizations) builds.
            //
            // Symptom: the second call to method InternalInstanceMethod() does not return the expected string value
            //
            // Cause: the result from the first call to method InternalInstanceMethod() is cached and so the second
            // call gets the cached value instead of making the call again.
            //
            // Remark: for some reason, without "dynamic" type, only the "Debug x86" build configuration would reevaluate 
            // the second call to InternalInstanceMethod() without using the cached string value.
            //
            // Also, using the [MethodImpl(MethodImplOptions.NoOptimization)] attribute on the method did not work.
            dynamic scenario = (Scenario1)Activator.CreateInstance(Scenario_Type);

            string methodName = scenario.InternalInstanceMethod();

            UnityEngine.Debug.Log("Call MethodRedirect.Scenario1.InternalInstanceMethod => "+ methodName);

            UnityEngine.Debug.Assert(methodName == "MethodRedirect.Scenario1.PrivateInstanceMethod");

            if (methodName == "MethodRedirect.Scenario1.PrivateInstanceMethod")
            {
                UnityEngine.Debug.Log("nRestore...");
                
                token.Restore();

                UnityEngine.Debug.Log(token);

                methodName = scenario.InternalInstanceMethod();

                UnityEngine.Debug.Log("Call MethodRedirect.Scenario1.InternalInstanceMethod => "+ methodName.ToString());

                UnityEngine.Debug.Assert(methodName == "MethodRedirect.Scenario1.InternalInstanceMethod");

                if (methodName == "MethodRedirect.Scenario1.InternalInstanceMethod")
                {
                    UnityEngine.Debug.Log("nSUCCESS!");
                }
                else
                {
                    UnityEngine.Debug.Log("nRestore FAILED");                    
                }
            }
            else
            {
                UnityEngine.Debug.Log("nRedirection FAILED");
            }

            Console.ReadKey();
        }
        
        internal string InternalInstanceMethod()
        {
            return "MethodRedirect.Scenario1.InternalInstanceMethod";
        }
        
        private string PrivateInstanceMethod()
        {
            return "MethodRedirect.Scenario1.PrivateInstanceMethod";
        }

        public string PublicInstanceMethod()
        {
            return "MethodRedirect.Scenario1.PublicInstanceMethod";
        }

        public static string PublicStaticMethod()
        {
            return "MethodRedirect.Scenario1.PublicStaticMethod";
        }
    }
}

Now when choosing the RedirectTo->Scenario1 Menu, the console shows the following:

Any ideas about what could cause this failure and how to get this running?

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật