Volatile.Write Method (SByte%, SByte)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Writes the specified value to the specified field. On systems that require it, inserts a memory barrier that prevents the processor from reordering memory operations as follows: If a read or write appears before this method in the code, the processor cannot move it after this method.

This API is not CLS-compliant. 

Namespace:  System.Threading
Assembly:  mscorlib (in mscorlib.dll)

Syntax

<CLSCompliantAttribute(False)> _
Public Shared Sub Write ( _
    ByRef location As SByte, _
    value As SByte _
)
[CLSCompliantAttribute(false)]
public static void Write(
    ref sbyte location,
    sbyte value
)

Parameters

  • value
    Type: System..::.SByte
    The value to write. The value is written immediately so that it is visible to all processors in the computer.

Remarks

For more information, see the Volatile class.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

Volatile Class

Write Overload

System.Threading Namespace