Loyc.Syntax.LineAndCol.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool
		public override bool Equals(object obj)
		{
			LineAndCol other = obj as LineAndCol;
			if (other == null)
				return false;
			return other._line == _line && other._posInLine == _posInLine;
		}
		public override int GetHashCode()