diff options
author | fcolin | 2007-02-01 10:06:40 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:06:40 +0000 |
commit | 2909264498b71ad51086be7b5e076a022c5b8270 (patch) | |
tree | 2e85e5cac38b74b5859e348fd01cf8e378c97f6b /CSharp/Ivy/IvyProbe | |
parent | b7b431b1310c950ad28bba11e0fd7136a8c447b9 (diff) | |
download | ivy-csharp-2909264498b71ad51086be7b5e076a022c5b8270.zip ivy-csharp-2909264498b71ad51086be7b5e076a022c5b8270.tar.gz ivy-csharp-2909264498b71ad51086be7b5e076a022c5b8270.tar.bz2 ivy-csharp-2909264498b71ad51086be7b5e076a022c5b8270.tar.xz |
Utilisateur : Fcolin Date : 30/06/06 Heure : 17:20 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: (vss 25)
Diffstat (limited to 'CSharp/Ivy/IvyProbe')
-rw-r--r-- | CSharp/Ivy/IvyProbe/IvyProbe.cs | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.cs b/CSharp/Ivy/IvyProbe/IvyProbe.cs index 86c6c9b..31c024a 100644 --- a/CSharp/Ivy/IvyProbe/IvyProbe.cs +++ b/CSharp/Ivy/IvyProbe/IvyProbe.cs @@ -45,11 +45,7 @@ namespace IvyProbe private void receive(object sender, IvyMessageEventArgs e)
{
string receive_str = "client " + e.Client.ApplicationName + " envoie: [";
- // Copy the collection to a new array starting at index 0.
- String[] args = new String[e.Arguments.Count];
- e.Arguments.CopyTo(args, 0);
-
- receive_str += string.Join(",", args);
+ receive_str += string.Join(",", e.Arguments);
receive_str += "]";
receive_str += " for '" + ((IvyApplicationBinding)sender).FormatedExpression + "'";
append(receive_str);
|