Por ejemplo, he¿Puedo usar Roslyn para la reescritura del código de tiempo de compilación?
class Foo: INotifyPropertyChanged {
public event PropertyChangedEventHandler PropertyChanged;
public int Bar {get;set;}
}
¿Puedo obtener la clase Foo AST y reescribir bar, en tiempo de compilación, a
public string Bar
{
get { return this.bar; }
set
{
if (value != this.bar)
{
this.phoneNumberValue = value;
PropertyChanged(this, new PropertyChangedEventArgs("Bar"));
}
}
}
.
FYI puede hacerlo hoy con esta https://github.com/SimonCropp/Fody – Simon
Se movió la ubicación de ese código. Ahora está en [github.com/Fody/Fody](http://github.com/Fody/Fody) – JKor