Type myType = typeof(CustomFunctions);
MethodInfo transToBigChinese = myType.GetMethod("TransToBigChinese");
if (!RegisteredObjects.IsTypeRegistered(myType))
{
    RegisteredObjects.Add(myType, "Functions,CustomFuncs,", 0x34);//要先注册这段才可以进行判断
    RegisteredObjects.AddFunction(transToBigChinese, "CustomFuncs");
}

 

相关文章:

  • 2022-12-23
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-23
猜你喜欢
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2021-09-04
  • 2022-12-23
  • 2022-01-02
相关资源
相似解决方案