We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g.
union ArgumentValue (csharp_partial) { ArgumentValueString, ArgumentValueArrayByte, ArgumentValueNumber, ArgumentValueBoolean, ArgumentValueList }
Firstly it's just a better design, to allow csharp_partial for all generated classes, without exception.
csharp_partial
But it may be useful for defining more brief constructors:
public ArgumentValueUnion(string value) { Value = ArgumentValueUnion.FromArgumentValueString(new ArgumentValueStringT { Value = value }); }
or overriding ToString():
ToString()
public override string ToString() { switch ... }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
E.g.
Firstly it's just a better design, to allow
csharp_partial
for all generated classes, without exception.But it may be useful for defining more brief constructors:
or overriding
ToString()
:The text was updated successfully, but these errors were encountered: