StrList.Add

This page contains reference documentation for the Add function. This function adds a string to a string-list.

Prototype

int Add( string StringToAdd )

Parameters

Function parameters are as follows:

Examples

Examples are as follows:

StrList fileList = new StrList;

string elevationFile = "c:\\my_geotiff\\montana.tif";

fileList.Add( elevationFile );

Working Sample Code

For sample code: