GroupingInfo Constructor

Initializes a new instance of the GroupingInfo class.

Definition

Namespace: DevCase.Core.DataProcessing.Common
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public GroupingInfo(
	string source,
	List<GroupingCharsInfo> groupingChars,
	bool hasClosedGroups,
	bool hasOpenGroups,
	int groupsClosedCount,
	int groupsOpenCount,
	Dictionary<int, int> groupsClosedPositions,
	List<int> groupsOpenPositions
)

Parameters

source  String
The source string.
groupingChars  ListGroupingCharsInfo
The grouping characters.
hasClosedGroups  Boolean
A value that determines whether the source string contains enclosed groups.
hasOpenGroups  Boolean
A value that determines whether the source string contains open groups.
groupsClosedCount  Int32
The amount of enclosed groups.
groupsOpenCount  Int32
The amount of open groups.
groupsClosedPositions  DictionaryInt32, Int32
The positions in the string of the enclosed groups.
groupsOpenPositions  ListInt32
The positions in the string of the open groups.

See Also