有什么方法可以从
Is there any way in which it can be seen the type of the parent activity of a NativeActivity from the Execute method ?
是的,您可以执行以下代码块,它将返回内部 Parent 属性的值 - 这将是您的父级的实例。
Parent
this.GetType() .GetProperty( "Parent", System.Reflection.BindingFlags.NonPublic | System.Reflection.BindingFlags.Instance) .GetValue(this, null)
Yes, you can execute the following code block and it will return you the value of the internal Parent property -- this will be the instance of your parent.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
是的,您可以执行以下代码块,它将返回内部
Parent
属性的值 - 这将是您的父级的实例。Yes, you can execute the following code block and it will return you the value of the internal
Parent
property -- this will be the instance of your parent.