Exemple #1
0
        protected override async Task <int> InitChildrenCountAsync()
        {
            if (_linkedListItems.Size != null && _linkedListItems.Size.Length > 0)
            {
                _sizeDefined = true;
                return((int)await _sizeParser.ParseSizeAsync(_linkedListItems.Size, _variable,
                                                             _natvisScope));
            }

            return(await EvaluateChildrenCountAsync());
        }
 protected override async Task <int> InitChildrenCountAsync() =>
 (int)await _sizeParser.ParseSizeAsync(_arrayListItems.Size, _variable, _natvisScope);