I'm looking at Protocol Buffers for C#, and there's code like this:
public sealed class FileDescriptor : IDescriptor
{
// snip
/// <value>
/// The file name.
/// </value>
public string Name => Proto.Name;
/// <summary>
/// The package as declared in the .proto file. This may or may not
/// be equivalent to the .NET namespace of the generated classes.
/// </summary>
public string Package => Proto.Package;
// etc.
=>
seems to be the lambda operator, but this doesn't look much like a lambda. What's going on here?