Click or drag to resize

CLSTSelectCSVStringItems Method

Load a LST with items from a second LST found in a CSV string.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void SelectCSVStringItems(
	string buff,
	CLST ls_to
)

public void SelectCSVStringItems(
	string buff,
	CLST ls_to
)

Parameters

buff
Type: SystemString
Comma separated item names
ls_to
Type: GeoEngine.Core.GXNetXCLST
LST to add selected items to
Remarks
Items in the input string must be separated with commas. Parsing uses the sCommaTokens_GS function. Both the name and value of the input LST items whose name matches an item in the input string are copied to the output LST. Items are copied in the same order they appear in the input string. Items in the string not found in the input LST are ignored, and no error is registered. Item matches are case-tolerant.
See Also