Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将 VB6 转换为 C#。我没有使用VB6的经验。有什么区别:
sWords() As String
和
sWords As String
很容易看出我可以将第二个转换为string sWordsC#,但第一个我不知道这意味着什么..array?
string sWords
第一个是字符串类型的数组,第二个只是一个字符串。
所以等价物是
string[] swords
string swords
第一个是一个数组,其边界在运行时确定。
所以你可以这样做:
Dim arr() As String arr = Array("love","to","code")
您还可以在运行时调整数组的大小:
ReDim arr(1 To 50)