Announcement

Collapse
No announcement yet.

New List(Of String)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    New List(Of String)

    What includes must I use to New List(Of String) ?

    Currently I get:
    Type 'List' is not defined.

    #2
    Dim x As New System.Collections.Generic.List(Of String)
    tenholde

    Comment


      #3
      Or add the following Imports statement:

      Imports System.Collections.Generic
      Jon

      Comment


        #4
        Which OS are you using (Windows or Linux)? I have had challenges when referencing collections under Linux.

        Comment


          #5
          Originally posted by tenholde View Post
          Dim x As New System.Collections.Generic.List(Of String)
          Thank you!

          Comment

          Working...
          X