Loading

csharp_space_after_colon_in_inheritance_clause

Space after the colon in a base list.

Value Notes
true
false

Default: true

csharp_space_after_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_after_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() { }
}