Describe the problem
A way/special attribute to be used in conjunction with ICommand or ObservableProperty which signalizes the backing field not to be serialized
Describe the solution
[ICommand]
[SpecialXMLIgnore]
private void DoSomething()
{
MessageBox.Show("Hello");
}
Example which should compile to
[XmlIgnore]
private IRelayCommand? doSomethingCommand;
public IRelayCommand DoSomethingCommand => doSomethingCommand ??= new RelayCommand(DoSomething);
Alternatives
No response
Additional info
No response
Help us help you
No response
Describe the problem
A way/special attribute to be used in conjunction with ICommand or ObservableProperty which signalizes the backing field not to be serialized
Describe the solution
Example which should compile to
Alternatives
No response
Additional info
No response
Help us help you
No response