You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 16, 2020. It is now read-only.
I'm using SharpDevelop 5 Beta 5.
Let's say I have a C# code file with the following content:
namespace foo
{
class bar
{
public int ID { get; set; }
}
}
When I add a new property directly under the ID-property the closing curly bracket of the class gets grabbed after I write the first semicolon for the "get" keyword. So the result is the following:
namespace foo
{
class bar
{
public int ID { get; set; }
public int Test { get; }
}
Hey there,
I'm using SharpDevelop 5 Beta 5.
Let's say I have a C# code file with the following content:
When I add a new property directly under the ID-property the closing curly bracket of the class gets grabbed after I write the first semicolon for the "get" keyword. So the result is the following:
That's very irritating...