gpt4 book ai didi

c# - 编写此 C# 循环代码的更优雅方式?

转载 作者:行者123 更新时间:2023-11-30 18:48:23 25 4
gpt4 key购买 nike

我必须为不同的成员重新进行这些类型的初始化:

this.Effects = new Effect [ image.Effects ];
for ( int i = 0; i < image.NumEffects; ++i )
{
this.Effects [ i ] = new Effect ( image.Effects [ i ] );
}

最佳答案

像这样:

this.Effects = Array.ConvertAll(image.Effects, e => new Effect(e));

这将比使用 SelectToArray 的等效 LINQ 调用更快,后者可能很快就会得到响应。

关于c# - 编写此 C# 循环代码的更优雅方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4717156/

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