greaterthan.cs
来自「Excel的操作,其中可以读取及写入Excel 文件」· CS 代码 · 共 49 行
CS
49 行
using System;
using Microsoft.Fawvw.Components.NExcel.Biff;
namespace Microsoft.Fawvw.Components.NExcel.Biff.Formula
{
/// <summary> A cell reference in a formula</summary>
class GreaterThan:BinaryOperator, ParsedThing
{
/// <summary> Abstract method which gets the token for this operator
///
/// </summary>
/// <returns> the string symbol for this token
/// </returns>
override internal Token Token
{
get
{
return Token.GREATER_THAN;
}
}
/// <summary> Gets the precedence for this operator. Operator precedents run from
/// 1 to 5, one being the highest, 5 being the lowest
///
/// </summary>
/// <returns> the operator precedence
/// </returns>
override internal int Precedence
{
get
{
return 5;
}
}
/// <summary> Constructor</summary>
public GreaterThan()
{
}
public override string getSymbol()
{
return ">";
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?