Will Thread.CurrentThread.ManagedThreadId
return the unique Id on the multiprocessor machine.
Explanation: I want to generate unique number. i generated unique number based on current time i.e.
currentTmeinmillisecons but two threads access the same function in same timestamp so i want to add something unique in that timestamp. So planning to to add Thread.CurrentThread.ManagedThreadId
in CurrentTimeInMilliseconds.
So can I add Thread.CurrentThread.ManagedThreadId in CurrentTimeInMilliseconds.