我有一个具有多个值的excel数组.有些小于256个字符,有些长度大于256.
当我尝试使用示例字符串执行VLookup时,我可以在匹配少于256个字符的行时获得结果.对于大于256个字符的行,它返回"#N/A".
有没有办法使用Vlookup或使用Excel中的其他内置函数,我可以克服这个限制?
我有一个问题,我需要一个arrayList数组.
例如,如果我们采用int的ArrayList数组,它将是:
int[]<List> myData = new int[2]<List>;
myData[0] = new List<int>();
myData[0].Add(1);
myData[0].Add(2);
myData[0].Add(3);
myData[1] = new List<int>();
myData[1].Add(4);
myData[1].Add(5);
myData[1].Add(6);
myData[0].Add(7);
Run Code Online (Sandbox Code Playgroud)
我们如何在C#中实现如上所述的数据结构?
在C中,它就像一个LinkedList数组.我怎样才能在C#中做同样的事情?