C#拆分列表简化了代码

时间:2016-08-03 13:47:24

标签: c# rhino grasshopper

早安,

我来自Python环境并转向c#。

我将更宽的列表拆分为具有规定长度的较窄列表。

有没有办法简化以下代码? 我的猜测是它有点慢,并且没有正确遵循c#通用编码规则。

List<object> B = new List<object>();
for(int i = 0; i < SD_Data.Count / 314; i++) {
  var SD_Input = SD_Data.Skip(314 * i).Take(314 * i + 313);
  B.Add(SD_Input);
}

A = B;

我发现了这种有用的方法

public static IEnumerable<IEnumerable<T>> Chunk<T > (this IEnumerable<T> source, int chunksize)
{
  while (source.Any())
  {
    yield return source.Take(chunksize);
    source = source.Skip(chunksize);
  }      
}
var z = Chunk(x, 10);

但它确实引发了以下错误:

Error (CS1513): } expected (line 69)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 88)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 88)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 89)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 89)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 90)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 91)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 92)
Error (CS1518): Expected class, delegate, enum, interface, or struct (line 94)
Error (CS1001): Identifier expected (line 112)
Error (CS1001): Identifier expected (line 114)
Error (CS1022): Type or namespace definition, or end-of-file expected (line 115)

我正在使用McNeel的Rhinoceros软件的Grasshopper界面。

提前致谢!

3 个答案:

答案 0 :(得分:1)

我终于明白了。

这个帖子给了我很多帮助。

Working with arrays/list with C# components in Grasshopper 3D

由于该方法是在另一个方法(即RunScript)中定义的,因此引发了该问题。 解决方案是将其写在

// <Custom additional code>

code here

// <Custom additional code>

所以结果是:

 private void RunScript(List<Point3d> SrcPts, List<string> Instrument, List<object> SD_Data, List<double> XY_Angles, List<string> Octave, ref object A, ref object B)
  {
    B = Chunk(SD_Data, 314);
  }

  // <Custom additional code> 

  public static IEnumerable<IEnumerable<T>> Chunk<T > (IEnumerable<T> source, int chunksize)
  {
    while (source.Any())
    {
      yield return source.Take(chunksize);
      source = source.Skip(chunksize);
    }
  }
  // <Custom additional code>

感谢所有宝贵的提示。

答案 1 :(得分:0)

使用该方法的语法是:

var B = SD_Data.Chunk(314);

Chunk被声明为Extension Method

答案 2 :(得分:0)

如果要以标准方式调用Chunk方法,请删除this关键字

public static IEnumerable<IEnumerable<T>> Chunk<T > (IEnumerable<T> source, int chunksize)
{
  while (source.Any())
  {
    yield return source.Take(chunksize);
    source = source.Skip(chunksize);
  }      
}