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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
It would be nice to be able to make abstract classes and methods. Currently only virtual is supported.
virtual
My Fluent-API would look like this:
var builder = CodeBuilder.Create("AwesomeApp") .AddClass("SampleClass") .MakeAbstractClass() .AddMethod("MyAbstractMethod") .MakeAbstract() .Class;
These should produce an output like:
namespace AwesomeApp { abstract partial class SampleClass { abstract void MyAbstractMethod() { } } }
I've got a pull request ready for this, but am of course open for changes to this. My approach follows the virtual style to be consistent.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
It would be nice to be able to make abstract classes and methods. Currently only
virtual
is supported.My Fluent-API would look like this:
These should produce an output like:
I've got a pull request ready for this, but am of course open for changes to this. My approach follows the
virtual
style to be consistent.The text was updated successfully, but these errors were encountered: