I create a ShapeFileFeatureLayer with a list of DbfColumn
One of the DbfColumn is type Date
col = new DbfColumn(“date”, DbfColumnType.Date, 8, 0);
And one with type Logical
col = new DbfColumn(“valid”, DbfColumnType.Logical, 1, 0);
I try to update a value in a feature
f.ColumnValues.Add(“date”,???); What about the DateTime.Now ???
And
f.ColumnValues.Add(“valid”,???); Is it “True”, “1”, …
Thanks
Regards
Laurent M