本文介绍了什么是System.Collections.Generic.List(Of String)类型的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用了来自 []在这里。
Dim FileNames = TwainLibScanImages(,, My.Setting.Scan)
我怎么知道FileNames的类型?但是当我将鼠标悬停在它上面时它表示Dim FileNames As System.Collections.Generic.List(Of String)。
对我来说这是一种奇怪的类型。如何存储它返回到字符串类型的东西(它的文件位置路径)。当我尝试将它返回的值存储到String时,它总是会产生错误。 Plz help!
解决方案
Hi,
I used TwainLib.dll library from http://www.youtube.com/watch?v=eA-MeWKiPAw[^]Here.
Dim FileNames = TwainLibScanImages(, , My.Setting.Scan)
How can I know the type of FileNames? But when I hover over it and it state it is " Dim FileNames As System.Collections.Generic.List(Of String)".
It''s a weird type for me. How can I store the stuff (It''s file location path) it returned to a String Type. It''s always produce an error when i try to store the value it returned to a String. Plz help!
解决方案
这篇关于什么是System.Collections.Generic.List(Of String)类型的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!