I know that you can loop through all the children on a transform in a foreach loop like this
foreach (Transform child in transform)
{
}
Is there a way to do this with LINQ? I would have thought it was something along the lines of transform.Where(x => ...);
but that gives me an error.