gpt4 book ai didi

vb.net - 为什么我得到 'Trim' is not declared with this VB.NET code?

转载 作者:行者123 更新时间:2023-12-01 11:22:10 25 4
gpt4 key购买 nike

我正在尝试编译一个 VB.NET 应用程序。除了“elephant in the room”,我还在代码中遇到 7 个“‘Trim’未声明”错误:

enter image description here

...以及一个“'IsNothing' 未声明。由于其保护级别,它可能无法访问。”在这条线上:

If IsNothing(memberList) = False Then

我不懂 VB,所以可能有一个简单的解决方案,但我不知道问题出在哪里。

最佳答案

Trim 函数需要从程序集 Visual Basic 运行时库(在 Microsoft.VisualBasic.dll 中)中引用 Microsoft.VisualBasic

通常最好使用字符串类中的 native Trim 方法,而不是添加对此程序集的引用(主要用于帮助移植旧的 VB6 应用程序)

mail.CC.Add(addr.Trim())

另请注意,string.Trim 会删除其他空白字符作为制表符,而 Microsoft.VisualBasic 函数不会。

关于vb.net - 为什么我得到 'Trim' is not declared with this VB.NET code?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40898683/

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