C
cody
public decimal Wert
{
get{return this.wert;}
[Obsolete]
set{this.wert=value;}
}
This doesn't compile. It gives me error CS0592 and says that obsolete cannot
be applied to that elemet.
{
get{return this.wert;}
[Obsolete]
set{this.wert=value;}
}
This doesn't compile. It gives me error CS0592 and says that obsolete cannot
be applied to that elemet.