6 instantiations of ITypedListDataClass
System.Windows.Forms.Tests (6)
System\Windows\Forms\ListBindingHelperTests.cs (6)
378
ITypedListDataClass typedListDataClass =
new
() { ListProperty = [new()] };
379
yield return new object[] { new
ITypedListDataClass
(), TypeDescriptor.GetProperties(typeof(ITypedListDataClass)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
382
yield return new object[] { new ITypedListDataClass[] {
new
() }, TypeDescriptor.GetProperties(typeof(ITypedListDataClass)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
384
yield return new object[] { new List<ITypedListDataClass> {
new
() }, TypeDescriptor.GetProperties(typeof(ITypedListDataClass)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
386
yield return new object[] { new ArrayList { new
ITypedListDataClass
() }, TypeDescriptor.GetProperties(typeof(ITypedListDataClass)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
388
yield return new object[] { new IEnumerableWrapper(new object[] { new
ITypedListDataClass
() }), TypeDescriptor.GetProperties(typeof(ITypedListDataClass)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
19 references to ITypedListDataClass
System.Windows.Forms.Tests (19)
System\Windows\Forms\ListBindingHelperTests.cs (19)
378
ITypedListDataClass
typedListDataClass = new() { ListProperty = [new()] };
379
yield return new object[] { new ITypedListDataClass(), TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
380
yield return new object[] { typedListDataClass, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
381
yield return new object[] { typeof(
ITypedListDataClass
), TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
382
yield return new object[] { new
ITypedListDataClass
[] { new() }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
383
yield return new object[] { new
ITypedListDataClass
[] { typedListDataClass }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
384
yield return new object[] { new List<
ITypedListDataClass
> { new() }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
385
yield return new object[] { new List<
ITypedListDataClass
> { typedListDataClass }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
386
yield return new object[] { new ArrayList { new ITypedListDataClass() }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
387
yield return new object[] { new ArrayList { typedListDataClass }, TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
388
yield return new object[] { new IEnumerableWrapper(new object[] { new ITypedListDataClass() }), TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
389
yield return new object[] { new IEnumerableWrapper(new object[] { typedListDataClass }), TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };
390
yield return new object[] { typeof(
ITypedListDataClass
[]), TypeDescriptor.GetProperties(typeof(
ITypedListDataClass
)).Cast<PropertyDescriptor>().ToArray(), new string[] { "OtherProperty" } };