I have two functions:
double fullFingerPrinting(string location1, string location2, int nGrams)
double AllSubstrings(string location1, string location2, int nGrams)
I want to go in a loop and activate each function in its turn, and after each function I also want to print the name of the function, how can I do that?
Delegate.Methodproperty to get the method name.Example (edited to show non-static function delegates):