Bug
| Bug ID Number | BUG-000179642 |
|---|---|
| Submitted | September 22, 2025 |
| Last Modified | December 10, 2025 |
| Applies to | ArcGIS Pro SDK for .NET |
| Version found | 3.5 |
| Operating System | Windows OS |
| Operating System Version | 11.0 64 bit |
| Version Fixed | 3.7 |
| Status | Fixed |
using (TableDefinition tableDefinition = table.GetDefinition()) { string globalIDFieldName = tableDefinition.GetGlobalIDField(); using (RowCursor cursor = table.Search()) { if (cursor.MoveNext()) { // Bug // var gid = cursor.Current.GetGlobalID(); //
Use the workaround to retrieve the GlobalID by its field name while the fix for the above bug is in progress. var gid = cursor.Current[globalIDFieldName]; Console.WriteLine($"First Dirty Area GlobalID: {gid}"); } else { Console.WriteLine("No dirty areas found."); } } }
Bug ID: BUG-000179642
Software:
Get help from ArcGIS experts
Download the Esri Support App