Skip to content

M_CommandLine_Infrastructure_StringBuilderExtensions_AppendIf

Moh.Hassan edited this page Oct 10, 2019 · 1 revision

StringBuilderExtensions.AppendIf Method

Namespace: CommandLine.Infrastructure
Assembly: CommandLine (in CommandLine.dll) Version: 0.0.0

Syntax

C#

public static StringBuilder AppendIf(
	this StringBuilder builder,
	bool condition,
	string ifTrue,
	string ifFalse
)

VB

<ExtensionAttribute>
Public Shared Function AppendIf ( 
	builder As StringBuilder,
	condition As Boolean,
	ifTrue As String,
	ifFalse As String
) As StringBuilder

C++

public:
[ExtensionAttribute]
static StringBuilder^ AppendIf(
	StringBuilder^ builder, 
	bool condition, 
	String^ ifTrue, 
	String^ ifFalse
)

F#

[<ExtensionAttribute>]
static member AppendIf : 
        builder : StringBuilder * 
        condition : bool * 
        ifTrue : string * 
        ifFalse : string -> StringBuilder 

Parameters

 

builder
Type: System.Text.StringBuilder
condition
Type: System.Boolean
ifTrue
Type: System.String
ifFalse
Type: System.String

Return Value

Type: StringBuilder

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type StringBuilder. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also

Reference

StringBuilderExtensions Class
CommandLine.Infrastructure Namespace

Clone this wiki locally