Kyle Schoonover created AVRO-3357:
-------------------------------------
Summary: Properties only assigned in constructors should be marked
readonly
Key: AVRO-3357
URL: https://issues.apache.org/jira/browse/AVRO-3357
Project: Apache Avro
Issue Type: Improvement
Components: csharp
Affects Versions: 1.11.1
Reporter: Kyle Schoonover
Properties only assigned in constructors should be marked readonly
ie:
{code:java}
public class MyClass
{
private readonly bool test;
public MyClass(bool test)
{
_test = test;
{
}{code}
--
This message was sent by Atlassian Jira
(v8.20.1#820001)