?? connection.cs
字號:
using System;
namespace _36Hang.Xml
{
/// <summary>
/// Connection 的摘要說明。
/// </summary>
public class Connection
{
public System.Xml.XmlDocument _XmlDocument;
/// <summary>
/// 獲取 Xml 對象
/// 用于從字符串導入 Xml 值
/// </summary>
/// <param name="Xml">Xml 字符串</param>
public Connection(string Xml)
{
try
{
_XmlDocument = new System.Xml.XmlDocument();
_XmlDocument.LoadXml(Xml);
}
catch(Exception e)
{
throw(e);
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -