What is the VB.NET keyword equivalent of C# "volatile"?
If there is no keyword what mechanism is the equivalent?
|
|
What is the VB.NET keyword equivalent of C# "volatile"? If there is no keyword what mechanism is the equivalent? |
||
|
|
|
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):
|
||
|
|
|
|
Duplicate: http://stackoverflow.com/questions/929146/how-do-i-specify-the-equivalent-of-volatile-in-vb-net |
||||||||||
|
|
|
link textI found this article on the web about not needing it: http://www.developerfusion.com/article/5184/multithreading-in-vbnet/7/ |
||
|
|