Any way to make this working dual core in C#?
- by Frantisek
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.