我需要验证字符串
string parameter="<HostName>Arasanalu</HostName><AdminUserName>Administrator</AdminUserName><AdminPassword>A1234</AdminPassword><PlaceNumber>38</PlaceNumber>"
在转换为正确的 xml 时,我将添加 Root 元素:
if (string.IsNullOrEmpty(value) == false)
{
// Try to load the value into a document
XmlDocument xmlDoc = new XmlDocument();
xmlDoc.LoadXml("<root>" + value + "</root>");
return true;
}
我想验证我的字符串,它将使用 XML Schema 转换为 XML 格式。请让我知道哪个是最好的程序?