It would be fine to have a way to merge and separate lines in a block.
For example C# 2.0 property:
public double Hours
{
get
{
return seconds / 3600;
}
set
{
seconds = value * 3600;
}
}
After merge will look like:
public double Hours { get { return seconds / 3600; } set { seconds = value * 3600; } }
and after separate it would look again:
public double Hours
{
get
{
return seconds / 3600;
}
set
{
seconds = value * 3600;
}
}
I know I can use regular expressions, but it is not as simple and not always applicable.