我有一个基类,它有一个嵌入式列表,所有子类都可以使用它来返回一个排序的集合。
我一直在使用Activator.CreateInstance()
,但与简单的 new() 函数相比,这非常慢。
我找到了一种使用 Emit IL 几乎与 new() 一样快的方法,但如果我的课程不是公开的,我会收到MethodAccessException
错误消息。这似乎很常见。
有没有解决的办法?
在此处生成类的代码: http ://codeblocks.codeplex.com/wikipage?title=FasterActivator%20Sample
此处与上述代码一起使用的代码:
public static List<T> SortedCollection<T>(SPListItemCollection items, ListSortType sortType, List<Vote> votes) where T : IVotable
{
var returnlist = new List<T>();
var functionCreator = FastActivator.GenerateFunc<Func<SPListItem, List<Vote>, T>>();
for (int i = 0; i < items.Count; i++) { returnlist.Add(functionCreator(items[i], votes)); }
//Old code here
//Type genericType = typeof(T);
//for (int i = 0; i < items.Count; i++) { returnlist.Add((T)Activator.CreateInstance(genericType, new object[] { items[i], votes })); }
switch (sortType)
{
case ListSortType.Hot:
returnlist.Sort((p1, p2) => p2.HotScore.CompareTo(p1.HotScore));
break;
case ListSortType.Top:
returnlist.Sort((p1, p2) => p2.VoteTotal.CompareTo(p1.VoteTotal));
break;
case ListSortType.Recent:
returnlist.Sort((p1, p2) => p2.CreatedDate.CompareTo(p1.CreatedDate));
break;
}
return returnlist;
}
//Usage
//Post : BaseClass which has above method
return Post.SortedCollection<Post>(listItems,sortType,votes);