6 instantiations of NonEnumerableITypedListImplementor
System.Windows.Forms.Tests (6)
System\Windows\Forms\ListBindingHelperTests.cs (6)
283
yield return new object[] { new
NonEnumerableITypedListImplementor
(), new string[] { "Property" } };
370
yield return new object[] { new
NonEnumerableITypedListImplementor
(), descriptors, new string[] { "Property" } };
372
yield return new object[] { new NonEnumerableITypedListImplementor[] {
new
() }, TypeDescriptor.GetProperties(typeof(NonEnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
373
yield return new object[] { new List<NonEnumerableITypedListImplementor> {
new
() }, TypeDescriptor.GetProperties(typeof(NonEnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
374
yield return new object[] { new ArrayList { new
NonEnumerableITypedListImplementor
() }, TypeDescriptor.GetProperties(typeof(NonEnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
375
yield return new object[] { new IEnumerableWrapper(new object[] { new
NonEnumerableITypedListImplementor
() }), TypeDescriptor.GetProperties(typeof(NonEnumerableITypedListImplementor)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
9 references to NonEnumerableITypedListImplementor
System.Windows.Forms.Tests (9)
System\Windows\Forms\ListBindingHelperTests.cs (9)
284
yield return new object[] { typeof(
NonEnumerableITypedListImplementor
), new string[] { "OtherProperty" } };
371
yield return new object[] { typeof(
NonEnumerableITypedListImplementor
), descriptors, new string[] { "Property" } };
372
yield return new object[] { new
NonEnumerableITypedListImplementor
[] { new() }, TypeDescriptor.GetProperties(typeof(
NonEnumerableITypedListImplementor
)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
373
yield return new object[] { new List<
NonEnumerableITypedListImplementor
> { new() }, TypeDescriptor.GetProperties(typeof(
NonEnumerableITypedListImplementor
)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
374
yield return new object[] { new ArrayList { new NonEnumerableITypedListImplementor() }, TypeDescriptor.GetProperties(typeof(
NonEnumerableITypedListImplementor
)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
375
yield return new object[] { new IEnumerableWrapper(new object[] { new NonEnumerableITypedListImplementor() }), TypeDescriptor.GetProperties(typeof(
NonEnumerableITypedListImplementor
)).Cast<PropertyDescriptor>().ToArray(), Array.Empty<string>() };
376
yield return new object[] { typeof(
NonEnumerableITypedListImplementor
[]), descriptors, new string[] { "Property" } };