GenericMethod.h 544 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. #include <string>
  3. struct MethodInfo;
  4. struct Il2CppGenericMethod;
  5. struct Il2CppGenericContext;
  6. namespace il2cpp
  7. {
  8. namespace metadata
  9. {
  10. class GenericMethod
  11. {
  12. public:
  13. // exported
  14. public:
  15. //internal
  16. static const MethodInfo* GetMethod(const Il2CppGenericMethod* gmethod);
  17. static const Il2CppGenericContext* GetContext(const Il2CppGenericMethod* gmethod);
  18. static std::string GetFullName(const Il2CppGenericMethod* gmethod);
  19. };
  20. } /* namespace vm */
  21. } /* namespace il2cpp */