I'm following the instructions for testing an azure function here and I came across this line of code:
public static NullScope Instance { get; } = new NullScope();
I've read this SO answer, so I understand auto-implemented properties, but I don't know how it combines with the static
keyword.
Is this just creating a new Nullscope that you can only access and not set? Or does this create a new NullScope every time you get
it? If possible, could you expand the line of code for better understanding?