unity get list length

C#
//Get list length / count

//Example
public List<GameObject> gameObjects = new List<GameObject>();

void Update()
{
  int listLength = gameObject.Count;
    if(listLength >= 0)
      	Debug.Log("Do something");
    else
       	Debug.Log("Do something else");
}

Source

Also in C#: