我有當我創建的對象與_fixture = new Fixture {OmitAutoProperties = true};
有這樣OmitAutoProperties影響非自動財產
public string Foo
{
get { return _foo; }
set
{
if (!string.Equals(_foo, value))
{
_foo= value;
OnPropertyChanged();
}
}
}
屬性的類,我希望它是有價值的,但它是空和setter從不打。我想念什麼?