rspec/rules/S2551/csharp/rule.adoc
2023-06-08 15:36:00 +02:00

44 lines
1.1 KiB
Plaintext

include::../why-dotnet.adoc[]
The following objects are considered as shared resources:
* a reference to https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/this[this]: if the instance is publicly accessibly, the lock might be shared
* a https://learn.microsoft.com/en-us/dotnet/api/system.type[Type] object: if the type class is publicly accessibly, the lock might be shared
* a https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/strings/[string] literal or instance: if any other part of the program uses the same string, the lock is shared because of interning
== How to fix it
=== Code examples
==== Noncompliant code example
[source,csharp,diff-id=1,diff-type=noncompliant]
----
void MyLockingMethod()
{
lock (this) // Noncompliant
{
// ...
}
}
----
==== Compliant solution
[source,csharp,diff-id=1,diff-type=compliant]
----
private readonly object lockObj = new object();
void MyLockingMethod()
{
lock (lockObj)
{
// ...
}
}
----
include::../resources-dotnet.adoc[]
include::../rspecator.adoc[]