📄 workpathinfo.cs
字号:
namespace Imps.Client.Pc
{
using System;
public class WorkPathInfo
{
private string _clientUpdateFile = @"LiveUpdate\FetionUpdate.exe";
private string _DlStatInfoFile = @"LiveUpdate\DLState.ini";
private string _DownloadDir = @"LiveUpdate\Download\";
private string _LogFile = @"LiveUpdate\LiveUpdate.log";
private string _SvrInfoFile = @"LiveUpdate\ServerVersion.xml";
internal WorkPathInfo()
{
}
public string ClientUpdateFile
{
get
{
return this._clientUpdateFile;
}
set
{
this._clientUpdateFile = value;
}
}
public string DlStatInfoFile
{
get
{
return this._DlStatInfoFile;
}
set
{
this._DlStatInfoFile = value;
}
}
public string DownloadDir
{
get
{
return this._DownloadDir;
}
set
{
this._DownloadDir = value;
}
}
public string LogFile
{
get
{
return this._LogFile;
}
set
{
this._LogFile = value;
}
}
public string SvrInfoFile
{
get
{
return this._SvrInfoFile;
}
set
{
this._SvrInfoFile = value;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -