How do I obtain a NULL value from an ArcGIS.Core.Data.Row?
I have a nullable field "Timestamp" in the Database.
When I iterate using a RowCursor, I can find no way to obtain that NULL value using the ArcGIS Pro SDK for DotNet.
I get a valid Row object and I can access all the other fields using the Indexer, just not the NULL field!
Something like this:
while(cursor.MoveNext()) {
Row row = cursor.Current;
DateTime timestamp = (DateTime)row["Timestamp"]; //Works only if not NULL. Throws NullReferenceException otherwise
}