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\");
Using System.Guid.NewGuid() you will get a object of Guid type
System.Guid.NewGuid()
Guid
Using System.Guid.NewGuid().ToString("D"); you will get the string representation of Guid object
System.Guid.NewGuid().ToString("D");
Also as I know no difference between .ToString("D") and .ToString()
.ToString("D")
.ToString()