diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs index 233c509ef0..fb1bb4a678 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Control/Module.cs @@ -187,7 +187,8 @@ namespace Debugger MemberRefProps constructorMethod = metaData.GetMemberRefProps(ca.Type); TypeRefProps attributeType = metaData.GetTypeRefProps(constructorMethod.DeclaringType); if (attributeType.Name == "System.Diagnostics.DebuggerStepThroughAttribute" || - attributeType.Name == "System.Diagnostics.DebuggerNonUserCodeAttribute") + attributeType.Name == "System.Diagnostics.DebuggerNonUserCodeAttribute" || + attributeType.Name == "System.Diagnostics.DebuggerHiddenAttribute") { if (ca.Owner >> 24 == 0x02) { // TypeDef ICorDebugClass2 corClass = corModule.GetClassFromToken(ca.Owner).CastTo();