diff options
author | fcolin | 2007-02-01 10:06:36 +0000 |
---|---|---|
committer | fcolin | 2007-02-01 10:06:36 +0000 |
commit | c2e0a7e2da7eae729487e06bacde122c3fc4784a (patch) | |
tree | e1557c814c6ef425868d1fd02286d8b02f48f3b4 /CSharp/Ivy/IvyProbe | |
parent | a440fb87a74d715c8b4eba999e2c1d74ee09d149 (diff) | |
download | ivy-csharp-c2e0a7e2da7eae729487e06bacde122c3fc4784a.zip ivy-csharp-c2e0a7e2da7eae729487e06bacde122c3fc4784a.tar.gz ivy-csharp-c2e0a7e2da7eae729487e06bacde122c3fc4784a.tar.bz2 ivy-csharp-c2e0a7e2da7eae729487e06bacde122c3fc4784a.tar.xz |
Utilisateur : Fcolin Date : 23/06/06 Heure : 15:33 Archivé dans $/CSharp/Ivy/IvyProbe Commentaire: ajout temps d'emission du message (vss 23)
Diffstat (limited to 'CSharp/Ivy/IvyProbe')
-rw-r--r-- | CSharp/Ivy/IvyProbe/IvyProbe.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CSharp/Ivy/IvyProbe/IvyProbe.cs b/CSharp/Ivy/IvyProbe/IvyProbe.cs index 095c31e..4d48607 100644 --- a/CSharp/Ivy/IvyProbe/IvyProbe.cs +++ b/CSharp/Ivy/IvyProbe/IvyProbe.cs @@ -82,7 +82,7 @@ namespace IvyProbe DateTime debut = DateTime.Now;
count = bus.SendMsg(tosend);
TimeSpan duree = DateTime.Now - debut;
- append("Sending '" + tosend + "' count " + count + " in " + duree);
+ append("Sending '" + tosend + "' count " + count + " in " + duree.TotalMilliseconds + " ms");
}
[STAThread]
|