diff options
Diffstat (limited to 'CSharp/Ivy/IvyPPC')
-rw-r--r-- | CSharp/Ivy/IvyPPC/IvyEventArgs.cs | 4 |
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;
|