CSharp 关键字

简介:

Book: Microsoft® Visual C#® 2010 Step by Step, Author: John Sharp

PUBLISHED BY Microsoft Press.

 

abstract  do        in        protected   true
as        double    int       public      try
base      else      interface readonly    typeof
bool      enum      internal  ref         uint
break     event     is        return      ulong
byte      explicit  lock      sbyte       unchecked
case      extern    long      sealed      unsafe
catch     false     namespace short       ushort
char      finally   new       sizeof      using
checked   fixed     null      stackalloc  virtual
class     float     object    static      void
const     for       operator  string      volatile
continue  foreach   out       struct      while
decimal   goto      override  switch
default   if        params    this
delegate  implicit  private   throw

Tip In the Visual Studio 2010 Code and Text Editor window, keywords are colored blue when you
type them.
C# also uses the following identifiers. These identifiers are not reserved by C#, which means
that you can use these names as identifiers for your own methods, variables, and classes, but
you should really avoid doing so if at all possible.

dynamic   join    set
from      let     value
get       orderby var
group     partial where
into      select  yield






本文转自 xkdcc 51CTO博客,原文链接:http://blog.51cto.com/brantc/383430,如需转载请自行联系原作者

目录
相关文章
|
3月前
|
C语言 C++
C 语言的关键字 static 和 C++ 的关键字 static 有什么区别
在C语言中,`static`关键字主要用于变量声明,使得该变量的作用域被限制在其被声明的函数内部,且在整个程序运行期间保留其值。而在C++中,除了继承了C的特性外,`static`还可以用于类成员,使该成员被所有类实例共享,同时在类外进行初始化。这使得C++中的`static`具有更广泛的应用场景,不仅限于控制变量的作用域和生存期。
72 10
|
7月前
|
Dart 开发者
Dart中的类型判断(is 关键字)
Dart中的类型判断(is 关键字)
162 0
|
8月前
|
Java
JavaSE&关键字,接口,代码块,枚举
JavaSE&关键字,接口,代码块,枚举
44 2
|
8月前
|
安全 程序员 编译器
【C/C++ 常用关键字使用指南】C++ 关键字 在头文件和源文件中函数声明与定义使用上的差异
【C/C++ 常用关键字使用指南】C++ 关键字 在头文件和源文件中函数声明与定义使用上的差异
225 0
|
8月前
|
C# C语言 C++
VS2010 Csharp调用非托管Cpp生成的DLL文件
VS2010 Csharp调用非托管Cpp生成的DLL文件
45 0
|
SQL Dart 小程序
C#using关键字的使用方法
这里记录下C#中using关键字的使用方法。 Using的使用大致分别以下三种:
76 0
|
存储 缓存 Dart
Dart中的factory关键字用法
Dart中的factory关键字用法
|
安全 Java Spring
Static 关键字的 5 种用法,你会几种?
说到static,静态变量和静态方法大家随口就来,因为他们在实际开发中应用很广泛,但他们真正在使用的时候会存在很多问题,而且它的使用不只那两种:
218 0
Static 关键字的 5 种用法,你会几种?

热门文章

最新文章