keywords.cs

来自「SharpDevelop2.0.0 c#开发免费工具」· CS 代码 · 共 110 行

CS
110
字号
// <file>
//     <copyright see="prj:///doc/copyright.txt"/>
//     <license see="prj:///doc/license.txt"/>
//     <owner name="none" email=""/>
//     <version>$Revision: 915 $</version>
// </file>

// this file was autogenerated by a tool.using System;namespace ICSharpCode.NRefactory.Parser.CSharp{	public class Keywords	{		static readonly string[] keywordList = {			"abstract",			"as",			"base",			"bool",			"break",			"byte",			"case",			"catch",			"char",			"checked",			"class",			"const",			"continue",			"decimal",			"default",			"delegate",			"do",			"double",			"else",			"enum",			"event",			"explicit",			"extern",			"false",			"finally",			"fixed",			"float",			"for",			"foreach",			"goto",			"if",			"implicit",			"in",			"int",			"interface",			"internal",			"is",			"lock",			"long",			"namespace",			"new",			"null",			"object",			"operator",			"out",			"override",			"params",			"private",			"protected",			"public",			"readonly",			"ref",			"return",			"sbyte",			"sealed",			"short",			"sizeof",			"stackalloc",			"static",			"string",			"struct",			"switch",			"this",			"throw",			"true",			"try",			"typeof",			"uint",			"ulong",			"unchecked",			"unsafe",			"ushort",			"using",			"virtual",			"void",			"volatile",			"while"		};				static LookupTable keywords = new LookupTable(true);				static Keywords()		{			for (int i = 0; i < keywordList.Length; ++i) {				keywords[keywordList[i]] = i + Tokens.Abstract;			}		}				public static int GetToken(string keyword)		{			return keywords[keyword];		}	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?