Browse Source

XML doc corrections

pull/3307/head
Siegfried Pammer 7 months ago
parent
commit
90946ae31a
  1. 6
      ICSharpCode.Decompiler/TypeSystem/IAssembly.cs

6
ICSharpCode.Decompiler/TypeSystem/IAssembly.cs

@ -52,7 +52,7 @@ namespace ICSharpCode.Decompiler.TypeSystem
public interface IModule : ISymbol, ICompilationProvider public interface IModule : ISymbol, ICompilationProvider
{ {
/// <summary> /// <summary>
/// Gets the underlying metadata file. May return null, if the IAssembly was not created from a PE file. /// Gets the underlying metadata file. May return null, if the module was not created from a file.
/// </summary> /// </summary>
MetadataFile? MetadataFile { get; } MetadataFile? MetadataFile { get; }
@ -77,12 +77,12 @@ namespace ICSharpCode.Decompiler.TypeSystem
string FullAssemblyName { get; } string FullAssemblyName { get; }
/// <summary> /// <summary>
/// Gets the list of all assembly attributes in the project. /// Gets all assembly attributes.
/// </summary> /// </summary>
IEnumerable<IAttribute> GetAssemblyAttributes(); IEnumerable<IAttribute> GetAssemblyAttributes();
/// <summary> /// <summary>
/// Gets the list of all module attributes in the project. /// Gets all module attributes.
/// </summary> /// </summary>
IEnumerable<IAttribute> GetModuleAttributes(); IEnumerable<IAttribute> GetModuleAttributes();

Loading…
Cancel
Save