I have a type Addr with a string and int. I am trying to use IEnumerator of Addr to check for intersections.
I have tried the following:
Addr tmp = someFunction(val); //Returns IEnumerator of Addr
foreach(tmp in anotherIE)
{
if(tmp = anotherIE)
// IT INTERSECTS!
}
However, it does not seem to let me do that. How do I accomplish this?
Thanks.


Sign In
Create Account


Back to top









