I'm wondering if there is any difference in runtime at lock
vs syncronized
.
I have learnd that syncronized
is a slow operation and outdated at Java.
Today I saw the lock
at C# and I'm wondering if they are the same and lock
is something I "want" to avoid same as in Java or maybe he is much faster and I want to use it...
Thanks!