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