Are Objective-C UUIDs compatible with .NET -
is uuid (guid) created using cfuuidcreate in objective-c compatible guids created within microsoft .net framework.
i.e. if build ios system generates ids using cfuuidcreate able use these in .net context?
thanks.
a uuid/guid 128-bit integer. such, inherently platform-agnostic.
when represented strings, seems both cfuuidcreatestring()
, system.guid.newguid().tostring()
use same format.
the difference cfuuidcreatestring()
uses uppercase letters represent hex digits ("6027ec11-8084-4678-a250-53d534aefd4a"
) while .net version uses lowercase letters ("9245fe4a-d402-451c-b9ed-9c1a04247482"
) default.
Comments
Post a Comment