C# Guid NewGuid
Description
Guid NewGuid
initializes a new instance of the Guid structure.
Syntax
Guid.NewGuid
has the following syntax.
public static Guid NewGuid()
Returns
Guid.NewGuid
method returns A new GUID object.
Example
This code example demonstrates the Guid.NewGuid() method.
// w w w.j a v a 2s . c o m
using System;
class Sample
{
public static void Main()
{
Guid g = Guid.NewGuid();
Console.WriteLine(g);
Console.WriteLine(Guid.NewGuid());
}
}
The code above generates the following result.