I\'m searching for a simple and fast way to check if all my Listitems have the same value for a member.
foreach (Item item in MyList) { Item.MyMember = &
Your own solution is simple enough already, but if you wanted to abstract away the loop and write it more expressively, you could use Linq.
bool allSame = MyList.All(item => item.MyMember == someValue);