What variable type is this?

Trying to translate the contact variable in Java to C# can someone help me?

void OnCollisionStay (Collision collision)
	{
	for (var contact : ContactPoint in collision.contacts)

In c#, it’s a ContactPoint, just as in JavaScript:

foreach (ContactPoint contact in collision.contacts)...