summaryrefslogtreecommitdiff
path: root/CSharp
diff options
context:
space:
mode:
authorfcolin2007-02-01 10:06:36 +0000
committerfcolin2007-02-01 10:06:36 +0000
commitc2e0a7e2da7eae729487e06bacde122c3fc4784a (patch)
treee1557c814c6ef425868d1fd02286d8b02f48f3b4 /CSharp
parenta440fb87a74d715c8b4eba999e2c1d74ee09d149 (diff)
downloadivy-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')
-rw-r--r--CSharp/Ivy/IvyProbe/IvyProbe.cs2
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]