gpt4 book ai didi

c# - Windows 8 App C# 'string' 不包含 'Copy' 的定义

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

我目前正在开发 Windows 8 应用程序,需要使用字符串复制函数,但 C# 的内置 String.Copy 函数无法正常工作。有其他 String 方法,但没有 Copy。

我尝试创建一个通用的 C# 控制台应用程序,它工作得很好。 Windows 8 应用程序项目是否不允许使用 System.String?

我在 Windows 8 Pro 上使用 Visual Studio 2012,一切都已更新。

最佳答案

正确 Copy在 Windows 应用商店应用程序中不可用。如果您查看 documentation here ,您可以看到它旁边没有“绿色商店”字形。 CopyTo虽然是可用的,但我想以下将完成同样的事情:

        s = "foo";
t = new String(s.ToCharArray());

关于c# - Windows 8 App C# 'string' 不包含 'Copy' 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15929768/

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