此示例代码演示如何在LINQ to XML时捕获异常信息。
示例代码此代码是调用XElement.Parse()方法分析所提供的XML字符串,但是因为此XML字符串中的开始标记和结束标记不是一致的,因此产生了分析异常。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using System.Xml;
namespace Demo04
{
class Program
{
static void Main(string[] args)
{
try
{
XElement Contacts = XElement.Parse(
@"
Jim Wilson
");
Console.WriteLine(Contacts);
}
catch (XmlException ex)
{
Console.WriteLine(ex.Message);
}
}
}
}
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: “古老”编程语言的最新选择!华为云发布CodeArts IDE for C/C++
摘要:华为云CodeArts IDE for C/C++正式上线,欢迎体验。 本文分享自华为云社区《“古老”编程语言的最新选择!华为云发布CodeArts IDE for C/C++》,作者:华为云头条 。 C语言是一种“古老”且应用至今的高级编程语言,它是多…