I know the C# operator => is a lambda operator. But today I came across the operator being used this way:
static readonly ResourceDictionary ResourceDictionary = new ResourceDictionary();
public static ResourceDictionary MyAppResources => ResourceDictionary;
Here it doesn't appear to be functioning as a lambda operator. Can anyone tell me what this operator does when used like that?