Any way to make this working dual core in C#?
        Posted  
        
            by Frantisek
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Frantisek
        
        
        
        Published on 2009-04-04T13:56:29Z
        Indexed on 
            2010/05/10
            8:34 UTC
        
        
        Read the original article
        Hit count: 364
        
Hi,
I got a piece of code that loops through the array and looks for the similar and same strings in it - marking it whether it's unique or not.
loop X array for I 
 ( loop X array for Y
   (
     If X is prefix of Y do. else if x is same length as Y and it's prefix do something.
   )
Here is the code to finilize everything for I and corresponding (found/not found) matches in Y.
 )
I'd like to make this for dual-core to multithread it. To my knowledge it is not possible, but it's highly probable that you may have some idea.
© Stack Overflow or respective owner