Skip to content

Commit

Permalink
Merge pull request #3052 from startewho/entrysize
Browse files Browse the repository at this point in the history
  • Loading branch information
siegfriedpammer authored Sep 24, 2023
2 parents be9fabb + ad2cdac commit 1327a0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ILSpy/TreeNodes/AssemblyTreeNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ private void DecompilePackage(LoadedPackage package, ITextOutput output)
output.WriteLine("Entries:");
foreach (var entry in package.Entries)
{
output.WriteLine(" " + entry.Name);
output.WriteLine($" {entry.Name} ({entry.TryGetLength()} bytes)");
}
}

Expand Down

0 comments on commit 1327a0d

Please sign in to comment.