UnityEditor.MemoryElement.LastChild C# (CSharp) Method

LastChild() public method

public LastChild ( ) : MemoryElement
return MemoryElement
        public MemoryElement LastChild()
        {
            if (!this.expanded)
            {
                return this;
            }
            return this.children[this.children.Count - 1].LastChild();
        }