 | 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
Syntaxpublic void SelectCSVStringItems(
string buff,
CLST ls_to
)
public void SelectCSVStringItems(
string buff,
CLST ls_to
)
Public Sub SelectCSVStringItems (
buff As String,
ls_to As CLST
)
Public Sub SelectCSVStringItems (
buff As String,
ls_to As CLST
)
public:
void SelectCSVStringItems(
String^ buff,
CLST^ ls_to
)
public:
void SelectCSVStringItems(
String^ buff,
CLST^ ls_to
)
member SelectCSVStringItems :
buff : string *
ls_to : CLST -> unit
member SelectCSVStringItems :
buff : string *
ls_to : CLST -> unit
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