gpt4 book ai didi

c# - 你将如何在 VB.net 中编写这个?我没有得到索引++

转载 作者:太空宇宙 更新时间:2023-11-03 17:26:46 25 4
gpt4 key购买 nike

我想这真的很微不足道,但我不明白 index++ 的作用。用 VB.net 怎么写?

int index = 0;
foreach(String prop in props.Keys)
{
pSpec.pathSet[index++] = prop;
}
pSpecs.Add(pSpec);

最佳答案

只是一个后增量。这意味着它将返回它的值,然后将它的值增加 1。

pSpec.pathSet[index++] = prop;

在 VB.net 中很可能只是:

pSpec.pathSet[index] = prop
index = index + 1 // this would work
index += 1 // this would work too

重要的是要注意,您不能以这种方式内联(因为您需要以前的值)。

关于c# - 你将如何在 VB.net 中编写这个?我没有得到索引++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8817674/

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