System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.EnsurePopulated C# (CSharp) Method

EnsurePopulated() private method

Called before any access to our collection to force it to become populated.
private EnsurePopulated ( ) : void
return void
            private void EnsurePopulated()
            {
                if (_children == null)
                {
                    _service.PopulateOptionCollection(this);
                    if (_children == null)
                    {
                        _children = new ArrayList(1);
                    }
                }
            }