Problem about code generation
How to generate C# code which contains "#region" and "#endregion" segment using CodeDOM, like this:
public class MyClass
{
#region Methods
public void MyMethod()
{
}
#endregion
}
Thanks in advance
Replies
Know the answer? Post it — somebody with the same question will find it here.