About 50 results
Open links in new tab
  1. What exactly is GUID? Why and where I should use it?

    Dec 16, 2008 · GUID technically stands for globally unique identifier. What it is, actually, is a 128 bit structure that is unlikely to ever repeat or create a collision. If you do the maths, the domain of values …

  2. javascript - How do I create a GUID / UUID? - Stack Overflow

    May 7, 2019 · How do I create GUIDs (globally-unique identifiers) in JavaScript? The GUID / UUID should be at least 32 characters and should stay in the ASCII range to avoid trouble when passing …

  3. C# how to create a Guid value? - Stack Overflow

    Feb 26, 2010 · One field of our struct is Guid type. How to generate a valid value for it?

  4. random - Create a GUID / UUID in Java - Stack Overflow

    Jun 6, 2010 · What are some of the best ways to create a GUID / UUID in Java?

  5. Is there any difference between a GUID and a UUID?

    Oct 29, 2008 · 9 GUID has longstanding usage in areas where it isn't necessarily a 128-bit value in the same way as a UUID. For example, the RSS specification defines GUIDs to be any string of your …

  6. c# - What is the default value for Guid? - Stack Overflow

    Jun 22, 2015 · The default value for int is 0 , for string is "" and for boolean it is false. Could someone please clarify what the default value for guid is?

  7. How to generate a Guid in SQL Server? - Stack Overflow

    Dec 20, 2016 · I need to create an Id as Guid in SQL(no identity) How I can do this? I defined the Id as uniqueidentifier but what is save in Db is 00000000-0000-0000-0000-000000000000

  8. How to create a Guid with all zero elements? - Stack Overflow

    Sep 2, 2013 · How to create a Guid with all zero elements? Asked 12 years, 5 months ago Modified 4 years, 2 months ago Viewed 16k times

  9. c# - Guid.NewGuid () vs. new Guid () - Stack Overflow

    Aug 13, 2012 · What's the difference between Guid.NewGuid() and new Guid()? Which one is preferred?

  10. c# - Assigning values for Nullable<Guid> - Stack Overflow

    Feb 19, 2014 · Guid? sample = new Guid?(new Guid(someString)); This does not really make much sense. You have a nullable type to be able to store a null value. But when you are assigning a value …