summaryrefslogtreecommitdiff
path: root/CSharp/Ivy/IvyPPC
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:00:49 +0000
committerfcolin2007-02-01 10:00:49 +0000
commitb3a61731cc966619220a21c026b3f31ff5accf08 (patch)
tree5bdfb702c9a0120a6e5523951ee8455567d4f4f3 /CSharp/Ivy/IvyPPC
parent775a569834eed1e55775ba3855e26ebfffa407ca (diff)
downloadivy-csharp-b3a61731cc966619220a21c026b3f31ff5accf08.zip
ivy-csharp-b3a61731cc966619220a21c026b3f31ff5accf08.tar.gz
ivy-csharp-b3a61731cc966619220a21c026b3f31ff5accf08.tar.bz2
ivy-csharp-b3a61731cc966619220a21c026b3f31ff5accf08.tar.xz
Utilisateur : Fcolin Date : 6/06/06 Heure : 17:47 Archivé dans $/CSharp/Ivy/Ivy Commentaire: ajout accesseur indexe (vss 2)
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r--CSharp/Ivy/IvyPPC/IvyEventArgs.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
index a4f033a..fe0196d 100644
--- a/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
+++ b/CSharp/Ivy/IvyPPC/IvyEventArgs.cs
@@ -70,6 +70,10 @@ namespace IvyBus
{
get { return args; }
}
+ public string this[int i]
+ {
+ get { return args[i]; }
+ }
public IvyMessageEventArgs(IvyClient app, int id, string[] args)
{
this.cleint = app;