This Code:
Something = new Guid()
is returning:
00000000-0000-0000-0000-000000000000
all the time
It's in System.Guid.
System.Guid.
To dynamically create a GUID in code:
Guid messageId = System.Guid.NewGuid();
To see its value:
string x = messageId.ToString();