0

是否可以轻松返回 read-only System.Xml.XmlElement,使其属性和子项无法修改?

我建议应该使用XmlNode.IsReadOnly 。例如,

System.Xml.XmlElement xml = ...;
//this line does not compile because the IsReadOnly property is read only
xml.IsReadOnly = true; 
return xml;
4

1 回答 1

0

不,您必须将其包装在您自己的类/结构中以公开此行为。

于 2012-08-13T11:05:05.000 回答