Loading

csharp_space_before_colon_in_inheritance_clause

Space before the colon in a base list.

Value Notes
true
false

Default: true

csharp_space_before_colon_in_inheritance_clause = true
		
namespace N;

public interface IWidget { }

public class Widget: IWidget
{
    public void Run() { }
}
		
namespace N;

public interface IWidget { }

public class Widget : IWidget
{
    public void Run() { }
}
		
csharp_space_before_colon_in_inheritance_clause = false
		
namespace N;

public interface IWidget { }

public class Widget : IWidget
{
    public void Run() { }
}
		
namespace N;

public interface IWidget { }

public class Widget: IWidget
{
    public void Run() { }
}