2 overrides of CreateCollectionItemType
System.Windows.Forms.Design (2)
System\ComponentModel\Design\ArrayEditor.cs (1)
24protected override Type CreateCollectionItemType()
System\Windows\Forms\Design\StringArrayEditor.cs (1)
16protected override Type CreateCollectionItemType() => CollectionType.GetElementType() ?? typeof(string[]);
2 references to CreateCollectionItemType
System.Windows.Forms.Design (1)
System\ComponentModel\Design\CollectionEditor.cs (1)
31protected Type CollectionItemType => _collectionItemType ??= CreateCollectionItemType();
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\CollectionEditorTests.cs (1)
1042public new Type CreateCollectionItemType() => base.CreateCollectionItemType();