From 905351789eb8d5ebc02998fa74ad78e29d3fe6a7 Mon Sep 17 00:00:00 2001 From: walon Date: Mon, 21 Jul 2025 09:35:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E9=9D=99=E6=80=81?= =?UTF-8?q?=E4=B8=8E=E6=88=90=E5=91=98=E5=87=BD=E6=95=B0=E5=9C=A8=E5=8C=85?= =?UTF-8?q?=E5=90=ABthis=E5=8F=82=E6=95=B0=E5=90=8E=E5=A6=82=E6=9E=9C?= =?UTF-8?q?=E5=8F=82=E6=95=B0=E5=AE=8C=E5=85=A8=E7=9B=B8=E5=90=8C=E5=88=99?= =?UTF-8?q?=E8=AE=A1=E7=AE=97=E5=87=BAMethodDefSignature=E7=9B=B8=E5=90=8C?= =?UTF-8?q?=E5=AF=BC=E8=87=B4RenameRecordMap=E5=8A=A0=E8=BD=BDsymbol-mappi?= =?UTF-8?q?ng=E6=96=87=E4=BB=B6=E6=97=B6signature=E5=86=B2=E7=AA=81?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Editor/Utils/TypeSigUtil.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Editor/Utils/TypeSigUtil.cs b/Editor/Utils/TypeSigUtil.cs index ee59bc9..5b80674 100644 --- a/Editor/Utils/TypeSigUtil.cs +++ b/Editor/Utils/TypeSigUtil.cs @@ -19,6 +19,10 @@ namespace Obfuz.Utils result.Append(" "); result.Append(method.DeclaringType.FullName); result.Append("::"); + if (method.IsStatic) + { + result.Append("@"); + } result.Append(method.Name); if (method.HasGenericParameters) {