摘要:
一.简介 ILRuntime是一个纯C#的热更新框架,能够使不支持JIT的运行环境(如IOS)能够实现代码热更新。 项目Github地址:Ourpalm/ILRuntime: Pure C# IL Intepreter Runtime, which is fast and reliable for 阅读全文
摘要:
lua中使用元表并指定元表的__index来模拟实现了类和对象,下面是一个我觉得比较好用的class方法,用来模拟实现类的继承,这个在我之前的博客中也有提及: function class(classname, super) local cls if type(super) ~= "table" t 阅读全文