rspec/rules/S2292/csharp/rule.adoc

36 lines
613 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
Trivial properties, which include no logic but setting and getting a backing field should be converted to auto-implemented properties, yielding cleaner and more readable code.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
----
public class Car
{
private string _make;
public string Make // Noncompliant
{
get { return _make; }
set { _make = value; }
}
}
----
2021-04-28 16:49:39 +02:00
== Compliant Solution
----
public class Car
{
public string Make { get; set; }
}
----
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]