About 51 results
Open links in new tab
  1. 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?

  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. Generating a plain GUID in Visual Studio - Stack Overflow

    Feb 17, 2021 · The Create UID option is available by default in Professional and Enterprise versions. To have Create GUID functionality you can add the Create GUID tool yourself by following the below steps.

  4. How to create a GUID/UUID in Python - Stack Overflow

    Feb 10, 2009 · How do I create a GUID/UUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is there a …

  5. Generate GUID in Windows with batch file - Stack Overflow

    Nov 30, 2010 · How can I generate a GUID in a batch file running using the commandline in Windows?

  6. php - How to generate a new GUID? - Stack Overflow

    Feb 10, 2014 · 63 I'm working on a web service which requires a new GUID() passed as a reference to a method within the service. I am not familiar with C# or the GUID() object, but require something …

  7. c# - How to seed GUID generation? - Stack Overflow

    Nov 2, 2012 · What would be the easiest way to code a function in .NET to generate a GUID based on a seed so that I can have greater confidence about its uniqueness? string GenerateSeededGuid(int …

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

    Aug 13, 2012 · Guid.NewGuid() creates an empty Guid object, initializes it by calling CoCreateGuid and returns the object. new Guid() merely creates an empty GUID (all zeros, I think).

  9. How can I generate a GUID for a string? - Stack Overflow

    I am having a problem generating a GUID for a string - for example: Guid g = New Guid("Mehar"); How can I compute a GUID for "Mehar"? I am getting an exception.

  10. 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 …