Struct NoParamOrder
Special placeholder to indicate that all parameters following this should be named. It is really important that all parameters following this are named, since the API won't guarantee the order of the parameter names.
Example: This signature: ...Save(string name, NoParamOrder noParamOrder = default, string title = title, string description = default)
allows:
Save("MyName", title: "MyTitle")
Save("MyName", description: "MyDescription")
- Save("MyName") - without additional parameters
[PublicApi]
public struct NoParamOrder
- Inherited Members
Fields
HelpLink
public const string HelpLink = "https://go.2sxc.org/named-params"