vote up 3 vote down star

Code

Something = new Guid()

is returning

00000000-0000-0000-0000-000000000000

all the time and I can't tell why? so, why?

flag

4 Answers

vote up 15 vote down check

You should use Guid.NewGuid()

link|flag
I can't use it. I don't know why. I have included System namespace but i don't have it. – Ante May 24 at 15:59
1  
@Ante: If you have the Guid class then you have the NewGuid method. – Guffa May 24 at 16:07
Well, for some reason i don't. Do u now what could be the problem? – Ante May 24 at 16:13
Something = Guid.NewGuid() works. – Dustin Campbell May 24 at 16:17
vote up 3 vote down

It's in System.Guid.

To dynamically create a GUID in code:

Guid messageId = System.Guid.NewGuid();

To see its value:

string x = messageId.ToString();
link|flag
Yes, it should be there (msdn.microsoft.com/en-us/library/…) but I can't use it. Why? – Ante May 24 at 16:06
"I can't use it" - what happens when you try to use it? Type it out manually (perhaps there's an issue with your intellisense) and try to compile - do you get compilation errors? – Matthew Brindley May 24 at 16:14
What do you mean when you say you "can't use it"? If you type Guid x = System.Guid.NewGuid() and compile, do you get an error? Or do you not like the value you're getting for x? – DOK May 24 at 16:17
I restared my machine and now it works fine. – Ante May 24 at 16:21
vote up 11 vote down

Just a quick explanation for why you need to call NewGuid as opposed to using the default constructor... In .NET all structures (value types like int, decimal, Guid, DateTime, etc) must have a default parameterless constructor that initializes all of the fields to their default value. In the case of Guid, the bytes that make up the Guid are all zero. Rather than making a special case for Guid or making it a class, they use the NewGuid method to generate a new "random" Guid.

link|flag
Relevant MSDN link: msdn.microsoft.com/en-us/library/… – Jason May 24 at 16:03
vote up 4 vote down

You should call the NewGuid method of the Guid class.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.