ฉันจะสร้าง UUID ใน C # ได้อย่างไร


142

ฉันกำลังสร้างไฟล์. idl โดยใช้โปรแกรม ฉันจะสร้าง UUID สำหรับอินเทอร์เฟซและวิธีการแบบเป็นโปรแกรมได้อย่างไร

ฉันสามารถสร้าง UUID แบบเป็นโปรแกรมได้หรือไม่


25
คุณหมายถึงGuid.NewGuid()?
SLaks

คำตอบ:


240

System.Guid.NewGuid()คุณอาจจะมองหา


34
คุณยังสามารถทำ String UUID = Guid.NewGuid (). ToString ()
Justin

11
GUID และ UUID เหมือนกันทั้งหมดหรือไม่
Uma Shankar Subramani

17
@ Uma Shankar Subramani: GUID = ตัวระบุเฉพาะทั่วโลก, UUID = ตัวระบุที่ไม่ซ้ำกันในระดับสากล คำที่แตกต่างกันสำหรับแนวคิดเดียวกัน
ทิวดอร์

1
และคุณต้องจัดรูปแบบของ GUID เป็นสตริงที่แตกต่างจากค่าเริ่มต้นคุณสามารถใช้ToString(string format)โอเวอร์โหลดที่ยอมรับตัวระบุรูปแบบหนึ่งในหลายรูปแบบ
Michiel van Oosterhout

7
คุณอาจต้องการทำSystem.Guid.NewGuid().ToString("B").ToUpper()หากคุณต้องการเข้ากันได้กับเครื่องมือ MS Build บางตัวที่ไม่เข้าใจ UUID ตัวพิมพ์เล็ก ตัวอย่างเช่นvdprojโครงการติดตั้งมี UUID เป็นตัวพิมพ์ใหญ่และจะให้ข้อยกเว้นที่คุณให้เป็นตัวพิมพ์เล็ก
Mark Lakata

46

ระวัง: ในขณะที่การแสดงสตริงสำหรับ. NET Guid และ (RFC4122) UUID เหมือนกัน แต่รูปแบบการจัดเก็บจะไม่เหมือนกัน .NET ซื้อขายเป็นไบต์ endian น้อยสำหรับสามGuidส่วนแรก

หากคุณกำลังส่งไบต์ (เช่น base64) คุณจะใช้Guid.ToByteArray()และเข้ารหัสไม่ได้ คุณจะต้องArray.Reverseมีสามส่วนแรก (Data1-3)

ฉันทำแบบนี้:

var rfc4122bytes = Convert.FromBase64String("aguidthatIgotonthewire==");
Array.Reverse(rfc4122bytes,0,4);
Array.Reverse(rfc4122bytes,4,2);
Array.Reverse(rfc4122bytes,6,2);
var guid = new Guid(rfc4122bytes);

ดูคำตอบนี้สำหรับรายละเอียดการใช้งาน. NET ที่เฉพาะเจาะจง

แก้ไข : ขอบคุณ Jeff Walker, Code Ranger ที่ชี้ให้เห็นว่า internalals ไม่เกี่ยวข้องกับรูปแบบของอาร์เรย์ไบต์ที่เข้าและออกจากตัวสร้างไบต์อาร์เรย์และToByteArray().


หมายเหตุ: ฉันรู้ว่า OP น่าจะหมายถึงGuid(เนื่องจากมีไว้สำหรับ. idl) แต่ฉันเพิ่งเจอสิ่งนี้ จัดไปครับ Bingers และ Googler
Ben Mosher

1
ฉันไม่สามารถทดสอบสิ่งนี้ได้ แต่แน่ใจหรือว่าคุณควรตรวจสอบ BitConverter.IsLittleEndian แทนที่จะย้อนกลับเสมอ เอกสารสำหรับ Guid ToByteArray () เรียกลำดับไบต์เป็น endian ตัวน้อยและบอกว่าตัวสร้างตรงกัน ข้อมูลจำเพาะสำหรับ GUID เป็นเพียงเล็กน้อย ฉันคิดว่าควรจะเป็นอิสระจากคำสั่งไบต์ของเครื่อง
Jeff Walker Code Ranger

@JeffWalkerCodeRanger: จาก Eric Lippert วัยที่แล้ว: blogs.msdn.com/b/ericlippert/archive/2004/05/25/141525.aspx
Ben Mosher

ฉันไม่เห็นว่าลิงก์ Eric Lippert ตอบคำถามอย่างไร ดูรหัสโมโนที่github.com/mono/mono/blob/master/mcs/class/corlib/System/…สำหรับฉันดูเหมือนว่าพวกเขามักจะสมมติว่าไบต์อยู่ในลำดับ endian เล็กน้อยโดยไม่คำนึงถึง endianness ดั้งเดิม นั่นพอดีกับความเข้าใจของฉันที่ว่าถ้ามันขึ้นอยู่กับแพลตฟอร์มมันจะไม่ตรงกับความหมายของ MS api หรือ spec เมื่อมองไปที่ mscorelib ที่ถอดประกอบดูเหมือนว่าไบต์ในอาร์เรย์จะอยู่ในลำดับ endian น้อยเกินไป
Jeff Walker Code Ranger

ดูเหมือนว่าคุณจะพูดถูก ในขณะที่รูปแบบการจัดเก็บข้อมูลภายในมีความไวต่อ endianness แต่ตัวสร้างและToByteArrayไม่; พวกเขามักจะ lil'-endian แก้ไขขาเข้า
Ben Mosher

3

นี่คือโซลูชัน "sequential guid" ฝั่งไคลเอ็นต์

http://www.pinvoke.net/default.aspx/rpcrt4.uuidcreate

using System;
using System.Runtime.InteropServices;


namespace MyCompany.MyTechnology.Framework.CrossDomain.GuidExtend
{
    public static class Guid
    {

        /*

        Original Reference for Code:
        http://www.pinvoke.net/default.aspx/rpcrt4/UuidCreateSequential.html

        */


        [DllImport("rpcrt4.dll", SetLastError = true)]
        static extern int UuidCreateSequential(out System.Guid guid);

        public static System.Guid NewGuid()
        {
            return CreateSequentialUuid();
        }


        public static System.Guid CreateSequentialUuid()
        {
            const int RPC_S_OK = 0;
            System.Guid g;
            int hr = UuidCreateSequential(out g);
            if (hr != RPC_S_OK)
                throw new ApplicationException("UuidCreateSequential failed: " + hr);
            return g;
        }


        /*

        Text From URL above:

        UuidCreateSequential (rpcrt4)

        Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
        To create a page in a module other than rpcrt4, prefix the name with the module name and a period.
        . Summary
        Creates a new UUID 
        C# Signature:
        [DllImport("rpcrt4.dll", SetLastError=true)]
        static extern int UuidCreateSequential(out Guid guid);


        VB Signature:
        Declare Function UuidCreateSequential Lib "rpcrt4.dll" (ByRef id As Guid) As Integer


        User-Defined Types:
        None.

        Notes:
        Microsoft changed the UuidCreate function so it no longer uses the machine's MAC address as part of the UUID. Since CoCreateGuid calls UuidCreate to get its GUID, its output also changed. If you still like the GUIDs to be generated in sequential order (helpful for keeping a related group of GUIDs together in the system registry), you can use the UuidCreateSequential function.

        CoCreateGuid generates random-looking GUIDs like these:

        92E60A8A-2A99-4F53-9A71-AC69BD7E4D75
        BB88FD63-DAC2-4B15-8ADF-1D502E64B92F
        28F8800C-C804-4F0F-B6F1-24BFC4D4EE80
        EBD133A6-6CF3-4ADA-B723-A8177B70D268
        B10A35C0-F012-4EC1-9D24-3CC91D2B7122



        UuidCreateSequential generates sequential GUIDs like these:

        19F287B4-8830-11D9-8BFC-000CF1ADC5B7
        19F287B5-8830-11D9-8BFC-000CF1ADC5B7
        19F287B6-8830-11D9-8BFC-000CF1ADC5B7
        19F287B7-8830-11D9-8BFC-000CF1ADC5B7
        19F287B8-8830-11D9-8BFC-000CF1ADC5B7



        Here is a summary of the differences in the output of UuidCreateSequential:

        The last six bytes reveal your MAC address 
        Several GUIDs generated in a row are sequential 
        Tips & Tricks:
        Please add some!

        Sample Code in C#:
        static Guid UuidCreateSequential()
        {
           const int RPC_S_OK = 0;
           Guid g;
           int hr = UuidCreateSequential(out g);
           if (hr != RPC_S_OK)
             throw new ApplicationException
               ("UuidCreateSequential failed: " + hr);
           return g;
        }



        Sample Code in VB:
        Sub Main()
           Dim myId As Guid
           Dim code As Integer
           code = UuidCreateSequential(myId)
           If code <> 0 Then
             Console.WriteLine("UuidCreateSequential failed: {0}", code)
           Else
             Console.WriteLine(myId)
           End If
        End Sub




        */








    }
}

คีย์เวิร์ด: CreateSequentialUUID SequentialUUID



0

ฉันมี GitHub Gist พร้อม Java เช่นการใช้งาน UUID ใน C #: https://gist.github.com/rickbeerendonk/13655dd24ec574954366

UUID สามารถสร้างขึ้นจากบิตที่น้อยที่สุดและสำคัญที่สุดเช่นเดียวกับใน Java นอกจากนี้ยังเปิดโปงพวกเขา การนำไปใช้มีการแปลงอย่างชัดเจนเป็น GUID และการแปลงโดยนัยจาก GUID

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.