rspec/rules/S1215/csharp/rule.adoc
2021-01-27 13:42:22 +01:00

16 lines
719 B
Plaintext

Calling ``++GC.Collect++`` is rarely necessary, and can significantly affect application performance. That's because it triggers a blocking operation that examines _every object in memory_ for cleanup. Further, you don't have control over when this blocking cleanup will actually run.
As a general rule, the consequences of calling this method far outweigh the benefits unless perhaps you've just triggered some event that is unique in the run of your program that caused a lot of long-lived objects to die.
This rule raises an issue when ``++GC.Collect++`` is invoked.
== Noncompliant Code Example
----
static void Main(string[] args)
{
// ...
GC.Collect(2, GCCollectionMode.Optimized); // Noncompliant
}
----