C# Class SmartFormat.Core.Parsing.FormatItem

Base class that represents a substring of text from a parsed format string.
Datei anzeigen Open project: scottrippey/SmartFormat.NET Class Usage Examples

Public Properties

Property Type Description
baseString string
endIndex int
startIndex int

Public Methods

Method Description
ToString ( ) : string

Protected Methods

Method Description
FormatItem ( FormatItem parent, int startIndex )
FormatItem ( string baseString, int startIndex, int endIndex )

Method Details

FormatItem() protected method

protected FormatItem ( FormatItem parent, int startIndex )
parent FormatItem
startIndex int

FormatItem() protected method

protected FormatItem ( string baseString, int startIndex, int endIndex )
baseString string
startIndex int
endIndex int

ToString() public method

public ToString ( ) : string
return string

Property Details

baseString public_oe property

public string baseString
return string

endIndex public_oe property

public int endIndex
return int

startIndex public_oe property

public int startIndex
return int