hello,
can i use my own class in asp.net for Array list?
kind of:
Dim list1 As myobj= New ArrayList
hello,
can i use my own class in asp.net for Array list?
kind of:
Dim list1 As myobj= New ArrayList
Use a generic List instead.
Dim list1 as List(Of myobj) = New List(Of myobj)
You want to use the .NET 2.0 feature Generics. Here is a couple of examples on how to use it with VB.NET