rspec/rules/S1123/csharp/rule.adoc

26 lines
606 B
Plaintext
Raw Normal View History

2020-12-23 14:59:06 +01:00
The ``Obsolete`` attribute can be applied with or without arguments, but marking something ``Obsolete`` without including advice as to why it's obsolete or on what to use instead will lead maintainers to waste time trying to figure those things out - every single time the warning is encountered.
2020-06-30 12:47:33 +02:00
== Noncompliant Code Example
----
public class Car
{
[Obsolete] // Noncompliant
public void CrankEngine(int turnsOfCrank)
{ ... }
}
----
== Compliant Solution
----
public class Car
{
[Obsolete("Replaced by the automatic starter")]
public void CrankEngine(int turnsOfCrank)
{ ... }
}
----