Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Lucene.Net 2.9.4, Lucene.Net 2.9.4g, Lucene.Net 3.0.3
-
None
-
all
Description
We should use .NET properties where ever possible. There are many methods in the API that use methods similar to Class.Getxxxxx() or Class.Setxxxxx(). These methods often just return a less-accessible field, with no real logic behind it.
- If there are both public Get/Set methods with no special logic, they can be turned into an automatic property: Name { get; set; }
- If there are both Get/Set methods with no special logic and the setter is private, use an automatic property: Name { get; private set; }
- In other cases, use good judgement based with the amount of logic that is present in the getter and setter methods.