Tagged Questions

32
votes
8answers
2k views

Why is this Java code 6x faster than the identical C# code?

UPDATE 2: Changing the target from x86 to anycpu has lowered the average execution time to 84ms per run, down from 282ms. Maybe I should split this off into a second thread? UPDATE: Thanks to Femaref ...
15
votes
6answers
2k views

Measure execution time in C#

I want to measure the execution of a piece of code and I'm wondering what the best method to do this is? Option 1: DateTime StartTime = DateTime.Now; //Code TimeSpan ts = ...
13
votes
4answers
7k views

What is the best way to measure execution time of a function?

Obviously I can do and DateTime.Now.After - DateTime.Now.Before but there must be something more sophisticated. Any tips appreciated.
5
votes
4answers
185 views

How to test 500 Trillion combinations in less than 6 hours of execution time [closed]

I have a PHP script now looping through combinations of a set of arrays. I can test 6.1 Billion of the 500 Trillion total combinations in 1 hour with a simple PHP script. Is it possible to write a ...
4
votes
5answers
666 views

C# 2.0 Execution Time Timer

I would like to be able to calculate the amount of time a number of functions take to execute. I was thinking about using some type of stopwatch class. I can call start/stop before and after each ...
2
votes
3answers
389 views

How to estimate method execution time?

I have requirement to cancel method execution if it takes the more than two seconds to complete and restart it on another thread. So, is there any way/call back mechanism/HACK, I can make method ...
0
votes
5answers
132 views

How to limit the execution time of a function in c sharp?

I've got a problem. I'm writing a benchmark and I have a function than is either done in 2 seconds or after ~5 minutes(depending on the input data). And I would like to stop that function if it's ...
0
votes
1answer
672 views

Write code for execution time on C# Command Line Application

I want to have my program execute a bunch of commands on load-time and this is in C# btw, but it's a console program, how can I do that?