First of all, you could have gone far with just a simple google search instead: C# For vs. Foreach
If you are wondering about performance, you should look into replacing your GameObject.Find() instead, and even your GetComponentsInChildren(); as these are much performance demanding than any for/foreach difference.
Which is faster depends on what you’re iterating over. Here’s a blog comparison that iterates over multiple kinds of objects, such as DataRows and custom objects, also including the performance of the While loop construct and not just the for and foreach constructs: