Other than the obvious syntax error of your posted snippet, what “doesn’t work” about that? If it doesn’t return true, then the object isn’t in the list.
What is Coordinates? The default equality compared used by contains will behave differently for structure and classes. If Coordinates is a class or other reference type it will return true only if the references are equal. So you can have two classes with the same values that are considered unequal. Struts and other value types are equal if their values are all equal.
All good. I recently dealt with a similar problem over on this thread. Check it out if you want to keep coordinates as a class. It’s a lot of hoops to jump through, but you can make classes compare by value.