----- Original Message ----- 
From: "Scott Arbiv" <[EMAIL PROTECTED]>
To: "'Gert Driesen'" <[EMAIL PROTECTED]>
Sent: Thursday, October 16, 2003 8:00 PM
Subject: RE: [Nant-users] Help with System.Collections...


> Gert,
> 
> I'm using version 0.8.3.  I tried your recommendation, still same error.

see below ...

> 
> Do you think it is because I'm not using the nightly build?
> Here is the file...
> 
> using Gnucla;
> using System;
> 
> namespace Gnucla {
> 
> public class AddressTester {
> 
>   public static void Main() {
> ...
> Collections.ArrayList mylist = new Collections.ArrayList();
> mylist.Add(e1);
> mylist.Add(e2);
> mylist.Add(e3);
> mylist.Add(e4);
> mylist.Add(e5);
> ...
>   }
> }
> 

That explains a lot :-)

try this instead :

using System;
using System.Collections;
 
namespace Gnucla {
    public class AddressTester {
 
    public static void Main() {
        Collections.ArrayList mylist = new Collections.ArrayList();
        mylist.Add("test);
    }
}

Gert


-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Nant-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/nant-users

Reply via email to