c# convert a string to guid code example
Example 1: string to guid c#
Guid newGuid = Guid.Parse(stringGuid);
Example 2: how to convert string to guid c#
// string naar guid
Guid newGuid = Guid.Parse("9940548e-dadc-405f-83f9-57431685cf5d")
Guid newGuid = Guid.Parse(stringGuid);
// string naar guid
Guid newGuid = Guid.Parse("9940548e-dadc-405f-83f9-57431685cf5d")