?? servicestateunknown.cs
字號:
using System;
namespace kae.ServiceStatePublisher
{
/// <summary>
/// ServiceStateUnknown implements a a concrete state
/// class in the State Pattern.
/// The Singleton Pattern is also used to limit this class
/// to one instance for the application.
/// </summary>
public class ServiceStateUnknown : ServiceState
{
private static ServiceStateUnknown _instance;
static ServiceStateUnknown()
{
lock (typeof(ServiceStateUnknown))
{
if (_instance == null)
_instance = new ServiceStateUnknown();
}
}
public static ServiceStateUnknown Instance
{
get { return _instance; }
}
public override string Status
{
get { return "Unknown"; }
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -