Collection Object

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

My Documentation tells me that there should be a Collection object available. But, when I try to use one, the compiler tells me "Type 'Collection' is not defined". I am importing the System.Collections namespace and my declaration looks like this

Dim myCollection As New Collectio

Am I doing something wrong

Thank
Martin
 
The Collection class is in the Microsoft.VisualBasic namespace. It's there
for backwards compatibility with VB Classic.

--
Rob Windsor [MVP-VB]
G6 Consulting
Toronto, Canada


Martin Payne said:
My Documentation tells me that there should be a Collection object
available. But, when I try to use one, the compiler tells me "Type
'Collection' is not defined". I am importing the System.Collections
namespace and my declaration looks like this -
 
Back
Top