how to find out how long it takes to take a method in c # for example i have label1 and method
public int MakeSome(int a, int b) { for (int i = 0; i < a; i++) { for (int j = 0; j < b; j++) {
Know how to find out how many milliseconds the MakeSome method takes and write the value to label1. thanks
source share