LankMasterFlex/PatelScript

Misuse of properties

Opened this issue · 0 comments

Just use

public int Value { private set; get }

instead of

private int m_value;
public int Value
{
  get
  {
     return m_value;
  }
}