反射调用private或internal构造函数
Posted timeobjserver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反射调用private或internal构造函数相关的知识,希望对你有一定的参考价值。
var eDefault = frameDataViewType.GetNestedType("ViewModes").GetField("Default").GetValue(null);//取类中枚举的值 if(eDefault == null) { Debug.LogError("eDefault == null"); return; } frameDataView = Activator.CreateInstance( frameDataViewType, BindingFlags.Instance|BindingFlags.NonPublic, null, new object[] { frameIdx, 0, eDefault, 5, false }, null); if(frameDataView == null) { Debug.LogError("framedataview == null"); return; }
以上是关于反射调用private或internal构造函数的主要内容,如果未能解决你的问题,请参考以下文章