CsCodeGenerator icon indicating copy to clipboard operation
CsCodeGenerator copied to clipboard

Easy C# class and code generation

Results 6 CsCodeGenerator issues
Sort by recently updated
recently updated
newest added

Using Visual Studio 2019. I do not see it in the code base currently, so a bit confused where its coming from, but each time directly after CsGenerator.CreateFiles() the breakpoint...

question

Using a simple list of lines works well enough for very simple methods, but as soon as you add even a single `if`, it becomes challenging to keep indents correct....

enhancement

model: ```cs serviceClassModel.Properties = new List { new(BuiltInDataType.String, "UdtName") { AccessModifier = AccessModifier.Public, KeyWords = new List { KeyWord.Override }, IsGetOnly = true, GetterBody = "foo" } }; ``` output:...

Zdravo Currently Comment renders the following: ``` // my comment public class MyClass ``` I would like Comment to render the following: ``` /// /// my comment /// public class...

enhancement

Current code does not support EnumValues having attributes or summaries.

question

Summaries should potentially be refactored here are a few issues I found 1. [Bug] Summary sections should be closed Current output ```c# /// /// ``` Correct output ```c# /// ///...

enhancement