vote up 0 vote down star

What is the VB.NET keyword equivalent of C# "volatile"?

If there is no keyword what mechanism is the equivalent?

flag
Can I ask why you want to know? Most people do not attempt to write lock-free multithreaded algorithms in VB. – Eric Lippert Jul 8 at 5:47

3 Answers

vote up 2 vote down check

There is no equivelent to C#'s volatile keywword in VB.NET. Volatile in C# just makes sure the compiler handles things differently when generating the IL, but the VB.NET compiler does not have this option.

You can work around it this way (taken from this blog post):

Function VolatileRead(Of T)(ByRef Address As T) As T
    VolatileRead = Address
    Threading.Thread.MemoryBarrier()
End Function

Sub VolatileWrite(Of T)(ByRef Address As T, ByVal Value As T)
    Threading.Thread.MemoryBarrier()
    Address = Value
End Sub
link|flag
vote up 1 vote down

Duplicate:

http://stackoverflow.com/questions/929146/how-do-i-specify-the-equivalent-of-volatile-in-vb-net

link|flag
Ahh yes. The ever present duplicate. I did search for it but couldn't find it. Probably because of the poorly chosen tags on that link. – Pastor Jul 8 at 1:13
Actually, I used Google to find that StackOverflow question. :) – SolutionYogi Jul 8 at 1:19
I used Google too. :) – Pastor Jul 8 at 2:15
I also used the StackOverflow built in search. – Pastor Jul 8 at 2:16
That's surprising. I searched for 'volatile equivalent vb.net' and it's a first hit in Google. google.com/search?hl=en&q=volatile+equivalent… – SolutionYogi Jul 8 at 2:48
vote up 0 vote down

link textI found this article on the web about not needing it:

http://www.developerfusion.com/article/5184/multithreading-in-vbnet/7/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.