Browse Source

Add intentation level to make it easier to see custom attributes belonging to interface implementations.

pull/3178/head
Siegfried Pammer 1 year ago
parent
commit
3e9e7a3b55
  1. 2
      ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs

2
ICSharpCode.Decompiler/Disassembler/ReflectionDisassembler.cs

@ -1609,7 +1609,9 @@ namespace ICSharpCode.Decompiler.Disassembler
output.Write(".interfaceimpl type "); output.Write(".interfaceimpl type ");
iface.Interface.WriteTo(module, output, genericContext, ILNameSyntax.TypeName); iface.Interface.WriteTo(module, output, genericContext, ILNameSyntax.TypeName);
output.WriteLine(); output.WriteLine();
output.Indent();
WriteAttributes(module, customAttributes); WriteAttributes(module, customAttributes);
output.Unindent();
output.WriteLine(); output.WriteLine();
} }
} }

Loading…
Cancel
Save