7 instantiations of EnumerableITypedListImplementor
System.Windows.Forms.Tests (7)
System\Windows\Forms\ListBindingHelperTests.cs (7)
280yield return new object[] { new EnumerableITypedListImplementor(), new string[] { "Property" } }; 362yield return new object[] { new EnumerableITypedListImplementor(), descriptors, new string[] { "Property" } }; 364yield return new object[] { new EnumerableITypedListImplementor[] { new() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 365yield return new object[] { new List<EnumerableITypedListImplementor> { new() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 366yield return new object[] { new ArrayList { new EnumerableITypedListImplementor() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 367yield return new object[] { new IEnumerableWrapper(new object[] { new EnumerableITypedListImplementor() }), TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 392ITypedListParent typedListParent = new() { ListProperty = new EnumerableITypedListImplementor() };
11 references to EnumerableITypedListImplementor
System.Windows.Forms.Tests (11)
System\Windows\Forms\ListBindingHelperTests.cs (11)
281yield return new object[] { typeof(EnumerableITypedListImplementor), new string[] { "OtherProperty" } }; 363yield return new object[] { typeof(EnumerableITypedListImplementor), descriptors, new string[] { "Property" } }; 364yield return new object[] { new EnumerableITypedListImplementor[] { new() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 365yield return new object[] { new List<EnumerableITypedListImplementor> { new() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 366yield return new object[] { new ArrayList { new EnumerableITypedListImplementor() }, TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 367yield return new object[] { new IEnumerableWrapper(new object[] { new EnumerableITypedListImplementor() }), TypeDescriptor.GetProperties(typeof(EnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() }; 368yield return new object[] { typeof(EnumerableITypedListImplementor[]), descriptors, new string[] { "Property" } }; 685public List<EnumerableITypedListImplementor> ListProperty { get; set; } 690public EnumerableITypedListImplementor ListProperty { get; set; }