1 type derived from B
System.Private.Windows.Core.Tests (1)
System\Value\StoringObject.cs (1)
54
private class C :
B
, I { }
2 instantiations of B
System.Private.Windows.Core.Tests (2)
System\Value\StoringObject.cs (2)
24
B b =
new
();
36
A a = new
B
();
5 references to B
System.Private.Windows.Core.Tests (5)
System\Value\StoringObject.cs (5)
16
bool success = value.TryGetValue(out
B
result);
24
B
b = new();
26
Assert.Equal(typeof(
B
), value.Type);
28
Assert.Same(b, value.GetValue<
B
>());
38
Assert.Equal(typeof(
B
), value.Type);