⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 plus.cs

📁 Excel的操作,其中可以读取及写入Excel 文件
💻 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 + -