diff --git a/xml/System.Threading/Volatile.xml b/xml/System.Threading/Volatile.xml index badaf093c7c..13782338115 100644 --- a/xml/System.Threading/Volatile.xml +++ b/xml/System.Threading/Volatile.xml @@ -46,10 +46,11 @@ > [!NOTE] > Calling one of these methods affects only a single memory access. To provide effective synchronization for a field, all access to the field must use and . -- In C#, using the `volatile` modifier on a field guarantees that every access to that field uses the and methods, but the `volatile` modifier cannot be applied to array elements. The and methods can be used on array elements. +- In C#, using the `volatile` modifier on a field guarantees that every access to that field is a volatile memory operation, but the `volatile` modifier cannot be applied to array elements. The and methods can be used on array elements. ]]> + volatile keyword (C# Reference) @@ -1639,4 +1640,4 @@ - \ No newline at end of file +