summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfcolin2007-02-01 09:49:23 +0000
committerfcolin2007-02-01 09:49:23 +0000
commitbbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2 (patch)
tree34b6b4e28bd19eb499b97a81fa63af4a304c2fa5
parent180767699668c165d6798a9a1d4e1034bb9d5012 (diff)
downloadivy-csharp-bbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2.zip
ivy-csharp-bbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2.tar.gz
ivy-csharp-bbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2.tar.bz2
ivy-csharp-bbe2afe5b1757b2f1bcfc747a0941ec6eb4c60e2.tar.xz
Utilisateur : Fcolin Date : 6/06/06 Heure : 17:47 Archivé dans $/CSharp/Ivy/Ivy Commentaire: ajout accesseur indexe (vss 2)
-rw-r--r--CSharp/Ivy/Ivy/IvyEventArgs.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/CSharp/Ivy/Ivy/IvyEventArgs.cs b/CSharp/Ivy/Ivy/IvyEventArgs.cs
index a4f033a..fe0196d 100644
--- a/CSharp/Ivy/Ivy/IvyEventArgs.cs
+++ b/CSharp/Ivy/Ivy/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;