コード例 #1
0
ファイル: TodoTask.cs プロジェクト: storyteller/Storyteller
 protected bool Equals(TodoTask other)
 {
     return string.Equals(Key, other.Key) && string.Equals(File, other.File) && Line == other.Line && string.Equals(Message, other.Message);
 }