iterate througha game object in unity

Code Example - iterate througha game object in unity

                
                        for(int i = 0; i < gameobject.transform.GetChildCount(); i++)
{
   Transform Children = gameobject.transform.GetChild(i);
}