.NET Native GUID conversion

后端 未结 3 1511
萌比男神i
萌比男神i 2020-12-10 07:48

I have an external database that is feeding information to me. One saves their data as native GUID format and my other data source supplies standard .NET GUID format string.

3条回答
  •  暖寄归人
    2020-12-10 08:25

    If in fact you are dealing with Endian issues, you'll have no choice but to parse the string yourself into the constituent parts of the Guid switch the Endianness, and then create a Guid that you would then use.

提交回复
热议问题