OpenMetaverse.GUI.AvatarList.ClearNodes C# (CSharp) Method

ClearNodes() public method

Thread-safe method for clearing the TreeView control
public ClearNodes ( ) : void
return void
        public void ClearNodes()
        {
            if (this.InvokeRequired) this.BeginInvoke((MethodInvoker)delegate { ClearNodes(); });
            else this.Items.Clear();
        }