Answers for "c# set a guid"

C#
1

c# set a guid

// If you already have a string representation of the Guid, you can do this:

Guid g = new Guid("11223344-5566-7788-99AA-BBCCDDEEFF00");

// And if you want a brand new Guid then just do

Guid g = Guid.NewGuid();
Posted by: Guest on August-25-2020

C# Answers by Framework

Browse Popular Code Answers by Language