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