?? parseobject.cs
字號:
using System;
namespace Interpreter
{
/// <summary>
/// Summary description for ParseObject.
/// </summary>
public class ParseObject
{
public const int VERB=1000;
public const int VAR=1010;
public const int MULTVAR=1020;
protected int value, type;
public ParseObject(int val, int typ) {
value = val;
type = typ;
}
public int getValue() {
return value;
}
public int getType() {
return type;
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -