0
我想從我的部件上卸下ObfuscationExclude屬性:Mono.Cecil能刪除自定義屬性
我嘗試:
但我不知道我可怎麼辦這個,有人可以幫我嗎?
public static void CleanCustomAttributes(AssemblyDefinition asmdef)
{
foreach(ModuleDefinition ModuleDef in asmdef.Modules)
{
foreach(TypeDefinition TypeDef in ModuleDef.Types)
{
foreach(CustomAttribute CustomAttrib in TypeDef.CustomAttributes)
{
if (CustomAttrib.AttributeType = // ?)
{
}
}
}
}
}
將您的代碼發佈爲文本,而不是圖片。 –
好的,我已經編輯了我的主帖。 –