是否可以轻松返回只读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;
答案 0 :(得分:0)
不,你必须将它包装在你自己的类/结构中以暴露这种行为。