在我的应用程序中,我XAttribute.SetValue(...)
用来设置 xml 属性的值。该值由用户提供。
我有以下方法来设置属性值:
private void SetValue(XAttribute attribute, string input)
{
attribute.SetValue(input);
}
如果输入是Hello "World"
,那么属性的值是:Hello "World"
这是我所期待的。
如果输入已经被“屏蔽”Hello "World"
了,那么属性的值是:Hello "World"
这是不正确的。
有没有办法避免这种转换?