This question is locked. New answers and comments are not allowed.
Hi Telerik-Team,
it would be realy nice, if you implemeted an new formatter option to set the before/after new line for #region / #endregion. Currently all lines will be removed sometimes. For example the new lines after a #region and before an constructor.
Kind regards,
Christian
Before JustCode;
After JustCode;
it would be realy nice, if you implemeted an new formatter option to set the before/after new line for #region / #endregion. Currently all lines will be removed sometimes. For example the new lines after a #region and before an constructor.
Kind regards,
Christian
Before JustCode;
namespace Test{ public class Class1 { #region CTors /// <summary> /// Initializes a new instance of the <see cref="Class1"/> class. /// </summary> public Class1() { } #endregion CTors #region Properties /// <summary> /// Gets or sets my property. /// </summary> /// <value> /// My property. /// </value> public int MyProperty { get; set; } #endregion Properties }}After JustCode;
namespace Test{ public class Class1 { #region CTors /// <summary> /// Initializes a new instance of the <see cref="Class1"/> class. /// </summary> public Class1() { } #endregion CTors #region Properties /// <summary> /// Gets or sets my property. /// </summary> /// <value> /// My property. /// </value> public int MyProperty { get; set; } #endregion Properties }}