i use simple value but i never used value.(entityname).so i have confusion about it.i think value use for taking current value but i did not understand here.
public Tax Tax
{
get
{
return _taxListing.Tax;
}
set
{
_taxListing.Tax = value;
RaisePropertyChanged("Tax");
Percent = value.Percent;
}
}
plz explain it .
valueis the special name for the value being assigned in a setter. Its type is the same as the type of the property being assigned, in this case it’sTax.Whatever you can do with any other variable of type
Tax, you can do withvalue. So ifTaxhas a property calledPercent, you can access that property asvalue.Percent.