Is there a difference when you generate a GUID using NewGuid(); vs System.Guid.NewGuid().ToString(\"D\"); or they are the same thing?
NewGuid();
System.Guid.NewGuid().ToString(\"D\");
Guid.NewGuid().ToString() is string representation of GUID, i.e. returns string object, while Guid.NewGuid() returns Guid datatype.
Guid.NewGuid().ToString()
string
Guid.NewGuid()
Guid