Astyle.

PadParenthesis Property

Summary

true to pad parenthesis with a space.
    if (isFoo)
        a = bar((b-c)*a,*d--);

    becomes:

    if ( isFoo )
        a = bar( ( b-c )*a, *d-- );
Assembly
NAnt.Contrib.dll
Namespace
NAnt.Contrib.Tasks
Containing Type
Astyle

Syntax

[TaskAttribute("pad-parenthesis", Required = false)]
[BooleanValidator()]
public bool PadParenthesis { get; set; }

Attributes

Type Description
TaskAttribute
BooleanValidator

Value

Type Description
bool