I am learning about GUID in C#. While reading, I have come across these two things such as
1. Guid obj = new Guid();
2. Guid obj = Guid.NewGuid();
I read, the first one always be 16 byte with all 0. The second one will makes an actual GUID with a unique value. Then What is the actual purpose of new Guid();? And When to use it?