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

📄 parsedthing.cs

📁 Excel的操作,其中可以读取及写入Excel 文件
💻 CS
字号:
using System;

namespace Microsoft.Fawvw.Components.NExcel.Biff.Formula
{
	
	/// <summary> An interface for an excel ptg</summary>
	internal interface ParsedThing
		{
			/// <summary> Reads the ptg data from the array starting at the specified position
			/// 
			/// </summary>
			/// <param name="data">the RPN array
			/// </param>
			/// <param name="pos">the current position in the array, excluding the ptg identifier
			/// </param>
			/// <returns> the number of bytes read
			/// </returns>
			int read(sbyte[] data, int pos);
		}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -