For example I want to remove or change below property attributes or add a new one. Is it possible?
[XmlElement("bill_info")]
[XmlIgnore]
public BillInfo BillInfo
{
get { return billInfo; }
set { billInfo = value; }
}
|
2
|
For example I want to remove or change below property attributes or add a new one. Is it possible?
|
|||
|
|
|
(edit - I misread the original question) You cannot add actual attributes (they are burned into the IL); however, with For an example:
Note also; if the xml attributes were just illustrative, then there is a second way to add attributes for things related to data-binding, by using |
|||
|
|
|
|
It is not possible to add/remove attributes from a class at runtime. It is possible however to update the way XML serialization works at runtime without needing to edit attributes. See Marc's post. EDIT Updated |
|||
|
|