Delegate.Method 属性 在 WinRT 上
Delegate.Method property on WinRT
我正在尝试将 Unity 游戏移植到 WinRT,目前遇到委托问题。当前代码使用委托 class 的方法 属性。但是这个 属性 似乎不再存在于 WinRT 上了。在 WinRT 上有什么替代方案?
来自对类似问题的评论:
Thanks, but Delegate.Method does not exist in WinRT. But in the
process of playing with your code, I found Delegate.GetMethodInfo()
which is all I needed in the first place.
也许 Delegate.GetMethodInfo()
就是您要找的东西。
Here 是原始问题,对于任何对更多细节感兴趣的人。
我正在尝试将 Unity 游戏移植到 WinRT,目前遇到委托问题。当前代码使用委托 class 的方法 属性。但是这个 属性 似乎不再存在于 WinRT 上了。在 WinRT 上有什么替代方案?
来自对类似问题的评论:
Thanks, but Delegate.Method does not exist in WinRT. But in the process of playing with your code, I found Delegate.GetMethodInfo() which is all I needed in the first place.
也许 Delegate.GetMethodInfo()
就是您要找的东西。
Here 是原始问题,对于任何对更多细节感兴趣的人。