public class AssemblyData

assembly RefDocGen
namespace RefDocGen.CodeElements
Base type:  object
Implements:  IEquatable<AssemblyData>

Represents a .NET assembly.

Constructors

public AssemblyData(string Name, IEnumerable<NamespaceData> Namespaces) #
Represents a .NET assembly.
Parameters
string Name
Name of the assembly (without file extension)
Enumerable of namespaces contained in the assembly.

Properties

public string Name { get; init; } #
Name of the assembly (without file extension)
public IEnumerable<NamespaceData> Namespaces { get; init; } #
Enumerable of namespaces contained in the assembly.