S
Simon
using System;
using System.Collections;
class Test
{
[STAThread]
static void Main()
{
ArrayList replies = new ArrayList();
foreach (Poster p in Newsgroup.Instance.Posters) {
string reply = p.PoseQuestion("Do you prefer KDE or GNOME?");
replies.Add(reply);
}
foreach (string reply in replies) {
BrainHelper.ProcessReply(reply);
}
}
}
using System.Collections;
class Test
{
[STAThread]
static void Main()
{
ArrayList replies = new ArrayList();
foreach (Poster p in Newsgroup.Instance.Posters) {
string reply = p.PoseQuestion("Do you prefer KDE or GNOME?");
replies.Add(reply);
}
foreach (string reply in replies) {
BrainHelper.ProcessReply(reply);
}
}
}