diff options
author | fcolin | 2007-02-01 09:49:27 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 09:49:27 +0000 |
commit | b45de0e87d5546e623110d7502faf33e2d23f001 (patch) | |
tree | 9cf14a947fddf9300a0be1ad487d3345dc9ceea6 /CSharp | |
parent | b4cf4cb468e3acc4bbecc212790cc23466142e81 (diff) | |
download | ivy-csharp-b45de0e87d5546e623110d7502faf33e2d23f001.zip ivy-csharp-b45de0e87d5546e623110d7502faf33e2d23f001.tar.gz ivy-csharp-b45de0e87d5546e623110d7502faf33e2d23f001.tar.bz2 ivy-csharp-b45de0e87d5546e623110d7502faf33e2d23f001.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 16:43 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 4)
Diffstat (limited to 'CSharp')
-rw-r--r-- | CSharp/Ivy/Ivy/IvyEventArgs.cs | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/CSharp/Ivy/Ivy/IvyEventArgs.cs b/CSharp/Ivy/Ivy/IvyEventArgs.cs index 1a0ee9d..e394802 100644 --- a/CSharp/Ivy/Ivy/IvyEventArgs.cs +++ b/CSharp/Ivy/Ivy/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;
}
}
}
|