Changeset 4711
- Timestamp:
- 06/15/08 03:44:07 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/nuxleus/Source/CodeSamples/SaxonExtensionFunction_Test/Program.cs
r4710 r4711 11 11 static void Main(string[] args) { 12 12 Stopwatch stopwatch = new Stopwatch(); 13 int count = 100; 13 int count = 1000; 14 15 //Warming things up... 16 TestDirect(10, stopwatch); 17 TestGenerics(10, stopwatch); 18 19 //This time for real 14 20 TestDirect(count, stopwatch); 15 21 TestGenerics(count, stopwatch); 22 23 16 24 Console.WriteLine("Completed direct test in:\t {0}ms", directEllapsedTime); 17 25 Console.WriteLine("Completed generics test in:\t {0}ms", genericsEllapsedTime);
