ArrayList

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • =?Utf-8?B?QklKVQ==?=

    ArrayList

    Hai,
    I have a problem in declaring ArrayList. When I declared an instance of
    arralist varible in page load event ex :- Dim arrList as ArrayList, I got an
    error message "Type expected". I dont know what is wrong with declaration.
    Anybody pls help me and thanks in advance


    Thanks and regards
    BIJU
  • Mark Rae [MVP]

    #2
    Re: ArrayList

    "BIJU" <BIJU@discussio ns.microsoft.co mwrote in message
    news:B0648A69-4054-426F-966D-D758B4FF42D6@mi crosoft.com...
    I have a problem in declaring ArrayList. When I declared an instance of
    arralist varible in page load event ex :- Dim arrList as ArrayList, I got
    an
    error message "Type expected". I dont know what is wrong with declaration.
    Dim arrList As New ArrayList()

    Implements the IList interface using an array whose size is dynamically increased as required.



    --
    Mark Rae
    ASP.NET MVP


    Comment

    Working...