-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCSharpCodeBuilder.cs
More file actions
22 lines (19 loc) · 748 Bytes
/
CSharpCodeBuilder.cs
File metadata and controls
22 lines (19 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
namespace NetEvolve.CodeBuilder;
using System.Text;
/// <summary>
/// Provides functionality for building C# code strings with proper indentation.
/// </summary>
public partial class CSharpCodeBuilder : CodeBuilderBase
{
/// <summary>
/// Initializes a new instance of the <see cref="CSharpCodeBuilder"/> class.
/// </summary>
public CSharpCodeBuilder()
: base() { }
/// <summary>
/// Initializes a new instance of the <see cref="CSharpCodeBuilder"/> class with the specified initial capacity.
/// </summary>
/// <param name="initialCapacity">The initial capacity of the internal <see cref="StringBuilder"/>.</param>
public CSharpCodeBuilder(int initialCapacity)
: base(initialCapacity) { }
}