10 private readonly
string reason;
11 private readonly
string stackTrace;
43 internal set => this.count = value;
49 int Result = this.reason.GetHashCode();
50 Result ^= Result << 5 ^ this.stackTrace.GetHashCode();
51 Result ^= Result << 5 ^ this.count.GetHashCode();
56 public override bool Equals(
object obj)
59 this.reason == S.reason &&
60 this.stackTrace == S.stackTrace &&
61 this.count == S.count);
Source of code flagging a collection for repair.
int Count
Number of times the collection has been flagged from this source.
override bool Equals(object obj)
string StackTrace
Stack trace of source flagging the collection.
override int GetHashCode()
FlagSource(string Reason, string StackTrace, int Count)
Source of code flagging a collection for repair.
string Reason
Reason for flagging collection.