I am trying to figure out how to check if testInt exists in all Car.SomeID in List
So:
int testInt = 10; List myCars = GetCars(); <
int testInt = 10; List myCars = GetCars();
myCars.Exists(c => c.SomeID == 10);
In the more general case, with LINQ (supports any type of abstract typed list):
bool hasCar = myCars.Any(c => c.SomeID == testInt);