gpt4 book ai didi

c# - VB中的&符号是什么?

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

我有这个VB代码,我正在为某人转换,但他没有评论它,那是什么意思

Dim Arguments As String = path & "\" & fs & ".freeze" & " ls"

最佳答案

Visual Basic 中的& 运算符用于连接字符串。在 C# 中,连接运算符是 + 所以直接翻译是

string Arguments = path + @"\" + fs + ".freeze" + " ls";

在我看来更好的方法是使用 Path.Combine:

string Arguments = Path.Combine(path, fs + ".freeze") + " ls";

关于c# - VB中的&符号是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10368122/

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