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
Currently when we want to Invoke something in a method body we have to use AppendLine:
methodBuilder.WithBody((x) => { x.AppendLine($"await Test(argument1, argument2)); });
Idea would be to create an "InvocationBuilder" which we could use like this:
x.Invoke(useAwait, methodname, params, prefix, suffix);
When interested i would volunteer to create a PR.
The text was updated successfully, but these errors were encountered:
Can you expand on this idea @Codelisk? Like is the goal to produce:
public string Speak() { return Speak("Hello World"); }
Sorry, something went wrong.
Yes thats pretty much it :)
No branches or pull requests
Currently when we want to Invoke something in a method body we have to use AppendLine:
Idea would be to create an "InvocationBuilder" which we could use like this:
x.Invoke(useAwait, methodname, params, prefix, suffix);
When interested i would volunteer to create a PR.
The text was updated successfully, but these errors were encountered: