C# (C Sharp)
Its easy to make GUIDs in C#. Below is clean code to get GUIDs. When the .Net CRL creates GUIDs or UUIDs they are version 4 guids. Where a '4' begins the third group of digits.
string myGuid = Guid.NewGuid().ToString();
Its easy to make GUIDs in C#. Below is clean code to get GUIDs. When the .Net CRL creates GUIDs or UUIDs they are version 4 guids. Where a '4' begins the third group of digits.
string myGuid = Guid.NewGuid().ToString();