UnityAndroidIl2cppPatchDemo icon indicating copy to clipboard operation
UnityAndroidIl2cppPatchDemo copied to clipboard

对枚举类型进行实现扩展函数会patch失败

Open moyubing0514 opened this issue 5 years ago • 0 comments

使用枚举类型扩展函数会导致E:CSharpException:ArgumentNullException: Value cannot be null 报错. 无法patch的C#代码如下:

using UnityEngine; public class Test : MonoBehaviour { void Start() { TestEnum.A.TestFunc(); } } public enum TestEnum { A, B, C } public static class TestStatic { public static void TestFunc(this TestEnum type) { Debug.Log(type.ToString()); } }

修改成常规静态方法不再报错,修改后如下: using UnityEngine; public class Test : MonoBehaviour { void Start() { TestStatic.TestFunc(TestEnum.A); }
} public enum TestEnum { A, B, C } public static class TestStatic {

public static void TestFunc(TestEnum type) {
    Debug.Log(type.ToString());
}

}

moyubing0514 avatar Sep 28 '19 05:09 moyubing0514