开发者

Need a Syncroot for a LinkedList(of T)

开发者 https://www.devze.com 2022-12-19 19:50 出处:网络
I am using VB.Net and would like to use a LinkedList. Only problem is that it开发者_JS百科 is a multithreaded application. I saw from MSDN that Syncroot is an explicit implementation of the ICollectio

I am using VB.Net and would like to use a LinkedList. Only problem is that it开发者_JS百科 is a multithreaded application. I saw from MSDN that Syncroot is an explicit implementation of the ICollection Interface. I found people wanting to do similar things with List(Of T). It seems that the solution there is to cast the list to the interface.

I have tried to do what I would imagine to be a similar thing in VB.Net, basically:

Dim TestLinkedList = New LinkedList(Of Long)
SyncLock (Ctype(TestLinkedList, ICollection)).SyncRoot
    .
    .
    .
End SyncLock

Is the above correct?


It will work, that's about all that can be said for it. SyncRoot was a mistake from .NET 1.1, there's no reason to continue the practice.

Dim list = New LinkedList(Of Long)
Dim listLock = New Object
...

SyncLock(listLock)
...
End SyncLock


ICollection.SyncRoot is generally considered a bad idea. You should either lock the collection itself, or lock on a separate lock object you create

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号