1 instantiation of OrderedCodeStatementCollection
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
2814statements = new OrderedCodeStatementCollection(table.Count, name);
16 references to OrderedCodeStatementCollection
System.Windows.Forms.Design (16)
System\ComponentModel\Design\Serialization\CodeDomComponentSerializationService.CodeDomSerializationStore.ComponentListCodeDomSerializer.cs (3)
19private readonly Dictionary<string, OrderedCodeStatementCollection?> _statementsTable = []; 278_statementsTable.TryGetValue(name, out OrderedCodeStatementCollection? statements); 319_statementsTable[name] = (OrderedCodeStatementCollection?)instance;
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (2)
2806OrderedCodeStatementCollection? statements; 2809statements = (OrderedCodeStatementCollection)table[name]!;
System\ComponentModel\Design\Serialization\TypeCodeDomSerializer.cs (8)
19private Dictionary<string, OrderedCodeStatementCollection>? _statementTable; 86_statementTable = new Dictionary<string, OrderedCodeStatementCollection>(count); 149if (!name.Equals(declaration.Name) && _statementTable.TryGetValue(name, out OrderedCodeStatementCollection? statements)) 176OrderedCodeStatementCollection[] statementArray = new OrderedCodeStatementCollection[_statementTable.Count]; 180OrderedCodeStatementCollection? rootStatements = null; 181foreach (OrderedCodeStatementCollection statements in statementArray) 284if (statements is null && _statementTable!.TryGetValue(name, out OrderedCodeStatementCollection? statementOut))
System\ComponentModel\Design\Serialization\TypeCodeDomSerializer.StatementOrderComparer.cs (3)
8private class StatementOrderComparer : IComparer<OrderedCodeStatementCollection> 16public int Compare(OrderedCodeStatementCollection? left, OrderedCodeStatementCollection? right)