minus.cs
来自「Excel的操作,其中可以读取及写入Excel 文件」· CS 代码 · 共 38 行
CS
38 行
using System;
namespace Microsoft.Fawvw.Components.NExcel.Biff.Formula
{
/// <summary> Ambiguously defined minus operator, used as a place holder when parsing
/// string formulas. At this stage it could be either
/// a unary or binary operator - the string parser will deduce which and
/// create the appropriate type
/// </summary>
class Minus:StringOperator
{
/// <summary> Abstract method which gets the binary version of this operator</summary>
override internal Operator BinaryOperator
{
get
{
return new Subtract();
}
}
/// <summary> Abstract method which gets the unary version of this operator</summary>
override internal Operator UnaryOperator
{
get
{
return new UnaryMinus();
}
}
/// <summary> Constructor</summary>
public Minus():base()
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?