protected bool Equals(TodoTask other) { return string.Equals(Key, other.Key) && string.Equals(File, other.File) && Line == other.Line && string.Equals(Message, other.Message); }
protected bool Equals(TodoTask other) { return(string.Equals(Key, other.Key) && string.Equals(File, other.File) && Line == other.Line && string.Equals(Message, other.Message)); }