Loyc.Syntax.SourceRange.operator C# (CSharp) Method

operator() public static method

public static operator ( ) : bool
return bool
		public static bool operator ==(SourceRange a, SourceRange b)
		{
			return a._source == b._source && a._startIndex == b._startIndex && a._length == b._length;
		}
		public static bool operator !=(SourceRange a, SourceRange b) { return !(a == b); }