I added a GUID field type to a feature class. Prior to doing an insert into the feature table, I set up for the new GUID:Row newRow = table.CreateRowObject();
Guid guid = Guid.NewGuid();
newRow.SetGUID("GUID", guid);
I confirmed in the debugger that a "real" GUID is generated each time with the NewGuid call. After the insert, however, the GUID in the table shows up as all zeroes--all the other data elements for the insert made it into the table correctly. Any ideas?