summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:00:53 +0000
committerfcolin2007-02-01 10:00:53 +0000
commit109e2e4857d737cac2b32710a6099158388a2443 (patch)
treee0326b15ea7ca93f87fa483e236c5cb0be15081a /CSharp/Ivy/IvyPPC
parent0829e79fcf562a34cf6b8dbf24da9dfd454b8932 (diff)
downloadivy-csharp-109e2e4857d737cac2b32710a6099158388a2443.zip
ivy-csharp-109e2e4857d737cac2b32710a6099158388a2443.tar.gz
ivy-csharp-109e2e4857d737cac2b32710a6099158388a2443.tar.bz2
ivy-csharp-109e2e4857d737cac2b32710a6099158388a2443.tar.xz
Utilisateur : Fcolin Date : 30/06/06 Heure : 16:43 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 4)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyEventArgs.cs9
1 files changed, 4 insertions, 5 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
index 1a0ee9d..e394802 100644
--- a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
+++ b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
@@ -1,5 +1,5 @@
using System;
-using System.Collections.Specialized;
+using System.Collections.Generic;
using System.Text;
namespace IvyBus
@@ -54,7 +54,7 @@ namespace IvyBus
{
private IvyClient client;
private int id;
- private StringCollection args;
+ private string[] args;
public IvyClient Client
{
@@ -66,7 +66,7 @@ namespace IvyBus
get { return id; }
}
- public StringCollection Arguments
+ public string[] Arguments
{
get { return args; }
}
@@ -78,8 +78,7 @@ namespace IvyBus
{
this.client = app;
this.id = id;
- this.args = new StringCollection();
- this.args.AddRange(args);
+ this.args = args;
}
}
}