How can I set the value of C# Custom Attibutes? -


possible duplicate:
how set attributes values using reflection

how can set value of custom attribute, custom attribute used in member of class object. consider below member attribute.

[datamember]     [decorater(false, false)]     [decroraterupdt(false, false)]     [pricingschema(false, false)]     public string uniqueid     {         { return uniqueid; }         set { uniqueid = value; }     } 

i want set pricing schema attribute's value.

thanks

its not possible please check answer on how set attributes values using reflection


Comments

Popular posts from this blog

c# - SharpSVN - How to get the previous revision? -

c++ - Is it possible to compile a VST on linux? -

url - Querystring manipulation of email Address in PHP -