本文介绍了“基本问题”的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这些声明有什么区别:

Dim strMyData()as string





Dim strMyData as string()


-Peter

What is the difference between these declarations:
Dim strMyData() as string

and

Dim strMyData as string()

-Peter

推荐答案








但是'Dim astr As String(10){}''将起作用。


-

MS Herfried K. Wagner

MVP< URL:http://dotnet.mvps.org/>

VB < URL:http://dotnet.mvps.org/dotnet/faqs/>



But ''Dim astr As String(10) {}'' will work.

--
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>


这篇关于“基本问题”的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-05 09:16