コード例 #1
0
ファイル: IrqAttribute.cs プロジェクト: mszprejda/renode
 public override string ToString()
 {
     return(string.Format("[IrqAttribute: {0} -> {1}@{2}]",
                          Sources == null ? "" : PrettyPrintIrqEnds(Sources.SelectMany(x => x.Ends)),
                          DestinationPeripheral.ToShortString(),
                          PrettyPrintIrqEnds(Destinations.SelectMany(x => x.Ends))));
 }
コード例 #2
0
 public override string ToString()
 {
     return($"{DestinationPeripheral.ToShortString()}@{PrettyPrintIrqEnds(Destinations.SelectMany(x => x.Ends))}");
 }