c# delegete creation and activation
        Posted  
        
            by aharont
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by aharont
        
        
        
        Published on 2010-05-28T09:21:04Z
        Indexed on 
            2010/05/28
            9:31 UTC
        
        
        Read the original article
        Hit count: 287
        
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?
© Stack Overflow or respective owner