gpt4 book ai didi

EPPlus: "Column out of range"错误与 LoadFromCollection

转载 作者:行者123 更新时间:2023-12-01 13:19:26 26 4
gpt4 key购买 nike

LoadFromCollection 出现“列超出范围”错误 - 代码如下。插入EPPlus自带的SampleApp进行复制。

我做了什么奇怪的事情还是一个错误?还是我没有设置的配置设置?

public class tst
{
public string Name;
[Description("Created Time")]
public DateTime Created_time;
}


var pck = new ExcelPackage();

var kpcollection = new List<tst>();
for (var i = 1; i <= 10; i++)
{
kpcollection.Add(new tst
{
Name = "line" + i.ToString(),
Created_time = DateTime.Now
});
}

var wsenum = pck.Workbook.Worksheets.Add("KPTest");
//Load the collection starting from cell A1...
wsenum.Cells["A1"].LoadFromCollection(kpcollection, true, TableStyles.Medium9);

最佳答案

添加类似 { get; set;} 的属性对于每个变量,因为 epplus 的工作方式是基于类的属性。

例如,而不是使用:

class student
{
int num;
string name;
}

用这个:
class student
{
int num { get; set; }
string name { get; set; }
}

关于EPPlus: "Column out of range"错误与 LoadFromCollection,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51170478/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com