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