📄 plus.cs
字号:
using System;
namespace Microsoft.Fawvw.Components.NExcel.Biff.Formula
{
/// <summary> Ambiguously defined plus 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 Plus:StringOperator
{
/// <summary> Abstract method which gets the binary version of this operator</summary>
override internal Operator BinaryOperator
{
get
{
return new Add();
}
}
/// <summary> Abstract method which gets the unary version of this operator</summary>
override internal Operator UnaryOperator
{
get
{
return new UnaryPlus();
}
}
/// <summary> Constructor</summary>
public Plus():base()
{
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -