Class SourceCommandActEntry
Represents an entry containing a source command and its associated act.
public record SourceCommandActEntry : IEquatable<SourceCommandActEntry>
- Inheritance
-
SourceCommandActEntry
- Implements
- Inherited Members
- Extension Methods
Constructors
SourceCommandActEntry(IIndexedFileLine, IAct)
Represents an entry containing a source command and its associated act.
public SourceCommandActEntry(IIndexedFileLine SourceCommand, IAct Act)
Parameters
SourceCommandIIndexedFileLineThe source command file line.
ActIActThe act associated with the source command.
Properties
Act
The act associated with the source command.
public IAct Act { get; init; }
Property Value
SourceCommand
The source command file line.
public IIndexedFileLine SourceCommand { get; init; }