C# Class Boo.BooLangService.StringParsing.ExcludeStringMatcher

What does this name even mean?! I walk a string, looking for a match to what you asked for that ISN'T inside a string declaration. e.g. Find the next closing parenthesis, starting from the first opening paren. MyFun(x, "some string ()"); This would find the last paren, NOT the one inside the string.
Show file Open project: jagregory/boolangstudio Class Usage Examples

Public Methods

Method Description
ExcludeStringMatcher ( string source )
FindNextIndex ( char value ) : int?
SetStartIndex ( int index ) : void

Method Details

ExcludeStringMatcher() public method

public ExcludeStringMatcher ( string source )
source string

FindNextIndex() public method

public FindNextIndex ( char value ) : int?
value char
return int?

SetStartIndex() public method

public SetStartIndex ( int index ) : void
index int
return void