Hi
I want to create a fishnet using the csharp code,Why isn't it generated after the code runs?thank you.
rs
await QueuedTask.Run(async () =>
{
string out_feature_class = @F:\data\fishnet.shp;
double cellSizeWidth = 0;
double cellSizeHeight = 0;
long numRows = 10;
long numCols = 10;
string labels = "NO_LABELS";
string template = "DISPLAY";
string geometryType = "POLYGON";
var parameters = Geoprocessing.MakeValueArray(out_feature_class, null, null, cellSizeWidth, cellSizeHeight, numRows, numCols, "",labels, template, geometryType);
await Geoprocessing.ExecuteToolAsync("management.CreateFishnet", parameters);
}
});