Find the index of an object in a List of objects through Contains
Just make the OS freeze, no exception
Not working:
return Keys.Contains(key);
Working:
foreach (var device in Keys)
{
if (k == device)
{
return true;
}
}
return false;
Seems related to #1592
Most helpful comment
Seems related to #1592