From 109e2e4857d737cac2b32710a6099158388a2443 Mon Sep 17 00:00:00 2001 From: fcolin Date: Thu, 1 Feb 2007 10:00:53 +0000 Subject: Utilisateur : Fcolin Date : 30/06/06 Heure : 16:43 Archivé dans $/CSharp/Ivy/IvyPPC Commentaire: (vss 4) --- CSharp/Ivy/IvyPPC/IvyEventArgs.cs | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'CSharp/Ivy/IvyPPC') 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; } } } -- cgit v1.1