Possible Duplicate:
How to set attributes values using reflection
How can I set the value of custom attribute, this custom attribute is used in the member of class object. Consider below member with its attribute.
[DataMember]
[Decorater(false, false)]
[DecroraterUpdt(false, false)]
[PricingSchema(false, false)]
public string UniqueID
{
get { return uniqueId; }
set { uniqueId = value; }
}
I want to set Pricing schema attribute's value.
Thanks