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
Post a Comment