[DevExpress Support Team: CLONED FROM T662681: CodeRush Wrapping for Expression bodies are not correct]
Hi Dmitry
It seems the issue for "Expression bodies" and "Wrap if long or multiline" is fixed, The issue for "Base list" has occured again. If I try "Propertiy \ Indexer \ Event", there are a issue with filled setters.
Please find the problems in the attached video.
I have reproduced the problem with help of the following code snippet and the attached CodeRush settings:
Source code:
namespace NamespaceName { public class MyClass { string propertyName; public string PropertyName { get { return propertyName; } set { propertyName = value; } } } }
Actual result:
namespace NamespaceName { public class MyClass { string propertyName; public string PropertyName { get { return propertyName; } set { propertyName = value; } } } }
Expected result:
namespace NamespaceName { public class MyClass { string propertyName; public string PropertyName { get { return propertyName; } set { propertyName = value; } } } }