You cannot access instance members from static members so you have 2 choices.
- Make the method an instance method (remove the
static
keyword)
- Make the field a static (add the
static
keyword)
The one you choose will depend on whether the field should be shared across all instances or not.