?? frameframe.cs
字號:
namespace FrameCountry.FrameBuild
{
using FrameCountry;
using System;
public class FrameFrame
{
private string ClassAlias = "FR";
private FrameCity frameCity = new FrameCity();
private string version = "1.0.0";
public string ConnectDBString
{
get
{
string functionAlias = "00";
string innerText = "";
string errorInfo = "";
FrameNode node = new FrameNode();
if (!node.GetNodeInnerText("frameconnect", "./ConfigList/Datebase/DBString", ref innerText, ref errorInfo))
{
throw new Exception(this.frameCity.DealErrorInfo(this.ClassAlias, functionAlias, errorInfo));
}
return innerText;
}
set
{
string functionAlias = "00";
string errorInfo = "";
FrameNode node = new FrameNode();
if (!node.SetNodeInnerText("frameconnect", "./ConfigList/Datebase/DBString", value, ref errorInfo))
{
throw new Exception(this.frameCity.DealErrorInfo(this.ClassAlias, functionAlias, errorInfo));
}
}
}
public string Version
{
get
{
return this.version;
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -