Strange reformat of attributes above property get/set
I have this interface declaration:
public interface IPerson
{
string Name
{
get;
set;
}
}
when i use reformat code(Ctrl+F) then its reformated to this:
public interface IPerson
{
string Name {
get;
set;
}
Can i somehow manage reformation of attributes on get/set of properties?
--
Peter Sulek
terrorix@centrum.sk
XanaNews ver. 1.18.1.6
Please sign in to leave a comment.