1.3.txt
来自「《Microsoft Visual C# .NET 2003开发技巧大全》源代码」· 文本 代码 · 共 17 行
TXT
17 行
Listing 1.3 Demonstrating Valid and Invalid Identifier Names
namespace _5_Identifiers
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
int i; // valid
int @int; // valid but confusing
int INT; // valid since C# is case sensitive
int 4_Score; // Not valid. Cannot begin with a digit
int in@t; // not valid. @ symbol not at beginning
int int; // not valid. Cannot use keywords
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?