System.ComponentModel.Design.DesignerOptionService.DesignerOptionCollection.EnsurePopulated C# (CSharp) Méthode

EnsurePopulated() private méthode

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