parsedthing.cs

来自「Excel的操作,其中可以读取及写入Excel 文件」· CS 代码 · 共 21 行

CS
21
字号
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 + =
减小字号Ctrl + -
显示快捷键?