Namespace references in C# vs. VB.Net

后端 未结 3 1437
轮回少年
轮回少年 2021-01-04 21:55

In VB.Net you can do something like the following without any issues... just ignore the fact that this is a pretty useless class :-)


Imports System

Public          


        
3条回答
  •  迷失自我
    2021-01-04 22:52

    you can say System.Collections.Generic.List. that would work.

    I think you need to give the entire list and not omit out the system part.

    ALso you will need to template it with string as in List similar to the List(Of string)

提交回复
热议问题