Created
November 18, 2021 15:15
-
-
Save svick/8ce1e3e26084e36338c65959bcd06bbb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
var x = new S3Options { Bucket = "root" }; | |
var y = new S3Options { I = 42 }; | |
Console.WriteLine(y.Bucket); | |
public struct S3Options | |
{ | |
public string Bucket { get; init; } | |
public int I { get; init; } = 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment