我需要将绑定的(UnityEngine.Component)列表转换为通用(T)列表,这可能吗?如何?
我正在使用 Unity 和 C#,但我想大致了解如何做到这一点。
List<Component> compList = new List<Component>();
foreach(GameObject obj in objects) // objects is List<GameObject>
{
var retrievedComp = obj.GetComponent(typeof(T));
if(retrievedComp != null)
compList.Add(retrievedComp);
}
List<T> newList = new List<T>(compList as IEnumerable<T>); // ERROR HERE
foreach(T n in newList)
Debug.Log(n);
谢谢!
我认为这是问题所在,我收到了这个运行时错误......
ArgumentNullException: Argument cannot be null.
Parameter name: collection
System.Collections.Generic.List`1[TestPopulateClass].CheckCollection (IEnumerable`1 collection)
System.Collections.Generic.List`1[TestPopulateClass]..ctor (IEnumerable`1 collection)
DoPopulate.AddObjectsToList[TestPopulate] (System.Reflection.FieldInfo target) (at Assets/Editor/ListPopulate/DoPopulate.cs:201)
System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture)
Rethrow as TargetInvocationException: Exception has been thrown by the target of an invocation.
System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture)
System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters)
DoPopulate.OnGUI () (at Assets/Editor/ListPopulate/DoPopulate.cs:150)
System.Reflection.MonoMethod.Invoke (System.Object obj, BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture)