mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
Show breakpoint state in ToString
This commit is contained in:
@@ -29,4 +29,6 @@ public struct Breakpoint : IEquatable<Breakpoint>
|
||||
public static bool operator !=(Breakpoint left, Breakpoint right) => !(left == right);
|
||||
|
||||
public override bool Equals(object obj) => obj is Breakpoint bp && Equals(bp);
|
||||
|
||||
public override string ToString() => $"{(Enabled ? '+' : '-')} {Uri} ({Line}, {Column})";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user