You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
590 B
C#

9 months ago
namespace com.azkoss.excellite
{
using System;
using System.IO;
internal class ExcelStringWithoutLength : ExcelStringBase
{
// Methods
public ExcelStringWithoutLength(string str) : base(str)
{
}
public ExcelStringWithoutLength(BinaryReader br, int charCount)
{
int num1 = 0x2020;
base.ReadOptionsAndString(br, ref num1, ref charCount);
}
public override string ToString()
{
return ("ExcelStringWithoutLength(" + base.GetFormattedStr() + ")");
}
}
}