gpt4 book ai didi

.net-3.5 - 系统.阵列。不包含 "ToList"的定义

转载 作者:行者123 更新时间:2023-12-03 08:07:18 24 4
gpt4 key购买 nike

我在下面代码的 ToList() 行收到上述错误

if (emailReplyTo != null)
{
System.Collections.Generic.List<String> replyto
= emailReplyTo
// Strip uneccessary spaces
.Replace(", ", ",")
.Split(',')
.ToList();

request.WithReplyToAddresses(emailReplyTo);
}

我已收录 using System.Collections;在我的文件的顶部。
目标框架是3.5,那么为什么会导致错误呢?

最佳答案

ToList 您正在寻找的方法是一种扩展方法。尝试添加此 using指令到您的文件的顶部:

using System.Linq;

通过添加此 using您向编译器指示应该导入该命名空间中的任何扩展方法的指令。有点遗憾的是,Visual Studio 在导入扩展方法方面没有更多帮助(ReSharper 做得很好)。

关于.net-3.5 - 系统.阵列。不包含 "ToList"的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5538377/

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