gpt4 book ai didi

c# - 在 C# 中将方法调用中的字符串数组初始化为参数

转载 作者:太空狗 更新时间:2023-10-29 20:44:23 25 4
gpt4 key购买 nike

如果我有这样的方法:

public void DoSomething(int Count, string[] Lines)
{
//Do stuff here...
}

为什么我不能这样调用它?

DoSomething(10, {"One", "Two", "Three"});

什么是正确的(但希望不是很远)?

最佳答案

你可以这样做:

DoSomething(10, new[] {"One", "Two", "Three"});

如果所有对象都是同一类型,则不需要在数组定义中指定类型

关于c# - 在 C# 中将方法调用中的字符串数组初始化为参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1416500/

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