RuntimeService:从保护工具自身加载运行时
public sealed class RuntimeService
{
ModuleDef? _rtModule;
public TypeDef GetRuntimeType(string fullName)
{_rtModule ?? LoadSelfModule(); // 首次调用懒加载return _rtModule.Find(fullName, true)?? throw new InvalidOperationException($"Runtime type…
2026/7/19 23:53:20