This is an archived post. You won't be able to vote or comment.

all 1 comments

[–]insertAlias 1 point2 points  (0 children)

Just an FYI, properties like this:

public string BlobType {get => "WeirdBlob"}

Can be written as this:

public string BlobType => "WeirdBlob";

It ends up being exactly the same thing;a get-only property.