1 type derived from A
System.Private.Windows.Core.Tests (1)
System\Value\StoringObject.cs (1)
53
private class B :
A
, I { }
2 instantiations of A
System.Private.Windows.Core.Tests (2)
System\Value\StoringObject.cs (2)
11
A a =
new
();
44
I a = new
A
();
7 references to A
System.Private.Windows.Core.Tests (7)
System\Value\StoringObject.cs (7)
11
A
a = new();
13
Assert.Equal(typeof(
A
), value.Type);
14
Assert.Same(a, value.GetValue<
A
>());
27
Assert.Same(b, value.GetValue<
A
>());
36
A
a = new B();
46
Assert.Equal(typeof(
A
), value.Type);
48
Assert.Same(a, value.GetValue<
A
>());