C# Class _3PA.Abl

Show file Open project: jcaillon/3P Class Usage Examples

Public Methods

Method Description
IsCharAllowedInVariables ( char c ) : bool

is the char allowed in a variable's name?

ReadAblWord ( string input, bool stopAtPoint, bool readRightToLeft = true ) : string

Overload, Reads a a word, either starting from the end (readRightToLeft = true) of the start of the input string stopAtPoint or not

ReadAblWord ( string input, bool stopAtPoint, int &nbPoints, bool readRightToLeft = true ) : string

Reads a a word, either starting from the end (readRightToLeft = true) of the start of the input string stopAtPoint or not, if not, output the nbPoints found

Method Details

IsCharAllowedInVariables() public static method

is the char allowed in a variable's name?
public static IsCharAllowedInVariables ( char c ) : bool
c char
return bool

ReadAblWord() public static method

Overload, Reads a a word, either starting from the end (readRightToLeft = true) of the start of the input string stopAtPoint or not
public static ReadAblWord ( string input, bool stopAtPoint, bool readRightToLeft = true ) : string
input string
stopAtPoint bool
readRightToLeft bool
return string

ReadAblWord() public static method

Reads a a word, either starting from the end (readRightToLeft = true) of the start of the input string stopAtPoint or not, if not, output the nbPoints found
public static ReadAblWord ( string input, bool stopAtPoint, int &nbPoints, bool readRightToLeft = true ) : string
input string
stopAtPoint bool
nbPoints int
readRightToLeft bool
return string