1 write to Property
System.Xaml.Tests (1)
System\Xaml\Schema\XamlMemberInvokerTests.cs (1)
70var instance = new TestClass { Property = 1 };
3 references to Property
System.Xaml.Tests (3)
System\Xaml\Schema\XamlMemberInvokerTests.cs (3)
71PropertyInfo property = typeof(TestClass).GetProperty(nameof(TestClass.Property))!; 115PropertyInfo property = typeof(TestClass).GetProperty(nameof(TestClass.Property))!; 119Assert.Equal(1, instance.Property);