C# Class FlatRedBall.Glue.CodeGeneration.CodeBuilder.CodeLineExtensionMethods

Exibir arquivo Open project: vchelaru/FlatRedBall

Public Methods

Method Description
Line ( this pCodeBlock, string value ) : ICodeBlock
_ ( this pCodeBlock ) : ICodeBlock

Places a blank line in the generated code.

_ ( this pCodeBlock, string value ) : ICodeBlock

Adds value as a line of code

Method Details

Line() public static method

public static Line ( this pCodeBlock, string value ) : ICodeBlock
pCodeBlock this
value string
return ICodeBlock

_() public static method

Places a blank line in the generated code.
public static _ ( this pCodeBlock ) : ICodeBlock
pCodeBlock this Block to add line to.
return ICodeBlock

_() public static method

Adds value as a line of code
public static _ ( this pCodeBlock, string value ) : ICodeBlock
pCodeBlock this Parent block to add to
value string Code to add
return ICodeBlock