📄 ncoverrunnersingleton.cs
字号:
// <file>
// <copyright see="prj:///doc/copyright.txt"/>
// <license see="prj:///doc/license.txt"/>
// <owner name="Matthew Ward" email="mrward@users.sourceforge.net"/>
// <version>$Revision: 1057 $</version>
// </file>
using System;
namespace ICSharpCode.CodeCoverage
{
/// <summary>
/// Single NCover runner that is used by all commands.
/// </summary>
/// <remarks>
public class NCoverRunnerSingleton
{
static NCoverRunner runner;
NCoverRunnerSingleton()
{
}
/// <summary>
/// Gets the <see cref="NCoverRunner"/> instance.
/// </summary>
public static NCoverRunner Runner {
get {
if (runner == null) {
runner = new NCoverRunner();
}
return runner;
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -