2 overrides of CreateCollectionItemType
System.Windows.Forms.Design (2)
System\ComponentModel\Design\ArrayEditor.cs (1)
22protected override Type CreateCollectionItemType()
System\Windows\Forms\Design\StringArrayEditor.cs (1)
16protected override Type CreateCollectionItemType() => CollectionType.GetElementType() ?? typeof(string[]);
1 reference to CreateCollectionItemType
System.Windows.Forms.Design (1)
System\ComponentModel\Design\CollectionEditor.cs (1)
31protected Type CollectionItemType => _collectionItemType ??= CreateCollectionItemType();