ReaderWriterLock Constructor

Definition

Initializes a new instance of the ReaderWriterLock class.

public:
 ReaderWriterLock();
public ReaderWriterLock();
Public Sub New ()

Examples

The following code example demonstrates how to create a new instance of the ReaderWriterLock class.

This code is part of a larger example provided for the ReaderWriterLock class.

// The complete code is located in the ReaderWriterLock class topic.
using System;
using System.Threading;

public class Example
{
   static ReaderWriterLock rwl = new ReaderWriterLock();
   // Define the shared resource protected by the ReaderWriterLock.
   static int resource = 0;
' The complete code is located in the ReaderWriterLock class topic.
Imports System.Threading

Public Module Example
   Private rwl As New ReaderWriterLock()
   ' Define the shared resource protected by the ReaderWriterLock.
   Private resource As Integer = 0
}
End Module

Applies to

See also