コード例 #1
0
 public bool Equals(ErrorPositionInfo other)
 {
     return(LineNumber == other.LineNumber);
 }
コード例 #2
0
 public ErrorViewModel(ErrorType type, string message, ErrorPositionInfo position)
 {
     Type     = type;
     Message  = message;
     Position = position;
 }