ET中热更(ILRuntime)使用过程中,需要做的适配器,比如Linq排序 By Flamesky
最近项目中用到个Linq的排序,由于没有注册适配器,导致不能用,其实ILRT作者已经做得很好,报错代码中已经做好对应的提示,只需要直接把提示的注册代码放到ILHelper.cs中注册适配器的位置就好,以下是对应代码的应用
热更中的表格类
// 定义类 namespace ETHotfix { public class DailyTaskData { public int id { get; set; } public string name { get; set; } public int sort { get; set; } public int type { get; set; } public int sub_type { get; set; } public long need_num { get; set; } public string target { get; set; } public string reward { get; set; } public string description { get; set; } public string uitype { get; set; } } } |
调用的地方,任意选择一种排序方式,当前按照sort字段进行升序排序
// 定义类 List listDailyTask = new List(); listDailyTask.Sort(delegate (DailyTaskData x, DailyTaskData y) { return x.sort.CompareTo(y.sort); }); listDailyTask = listDailyTask.OrderBy(u => u.sort).ToList(); |
从报错提示赋值到ILHelper.cs中的注册适配器的代码
// 定义类 appDomain.DelegateManager.RegisterFunctionDelegate<ILTypeInstance, ILTypeInstance, Int32>(); appDomain.DelegateManager.RegisterDelegateConvertor<Comparison>((act) => { return new Comparison((x, y) => { return ((Func<ILTypeInstance, ILTypeInstance, Int32>)act)(x, y); }); }); appDomain.DelegateManager.RegisterFunctionDelegate<ILTypeInstance, System.Int32>(); |
然后就可以正常使用排序了
本文固定链接: http://www.flamesky.xyz/?p=30
转载请注明: Flamesky 2018年05月31日 于 Flamesky 发表