Seemingly in c# you can call a function and pass it a variable with a double colon syntax like so: foo(bar: "example")
, what is this syntax called?
And,
in the GetReleasesAsync
function call below, by the expand:
I would like to pass two variables as opposed passing only one like below, what is the syntax to pass more than one variable? For example something like expand: {ReleaseExpands.Variables, ReleaseExpands.Artifacts}
with (curly) brackets?
List<WebApiRelease> azureReleases = await ReleaseHttpClient.GetReleasesAsync(project: _projectName, expand: ReleaseExpands.Variables, top: 100);