📄 rut.cs
字号:
/******************************************************************************
Module: RUT.cs
Notices: Copyright (c) 2002 Jeffrey Richter
******************************************************************************/
using System;
///////////////////////////////////////////////////////////////////////////////
// A public (exported) rarely-used type
public class ARarelyUsedType {
public ARarelyUsedType() {
Console.WriteLine("A rarely used type was constructed.");
}
}
///////////////////////////////////////////////////////////////////////////////
// A private (by default) rarely-used type
class APrivateRarelyUsedType {
public APrivateRarelyUsedType() {
Console.WriteLine("A private rarely used type was constructed.");
}
}
//////////////////////////////// End of File //////////////////////////////////
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -