Is it possible to declare a constant Guid in C#?

I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write const Guid?

link|improve this question

2  
What's wrong with a static readonly Guid? – Pedro Feb 7 '11 at 21:07
Nothing, if it's the only way to do it. – smartcaveman Feb 7 '11 at 21:08
feedback

4 Answers

up vote 10 down vote accepted

No. The const modifier only applies to "primitive" types (bool, int, float, double, long, decimal, short, byte) and strings. Basically anything you can declare as a literal.

link|improve this answer
feedback

Declare it as static readonly Guid rather than const Guid

link|improve this answer
feedback

While you can't seem to do that you can do that to be parsed whenever you need it:

const string _myGuidStr = "e6b86ea3-6479-48a2-b8d4-54bd6cbbdbc5";

But don't use the above guid as it belongs to me solely, I first generated it so I claim ownership on this particular guid above! But I'm generious - use this one instead (I don't like how it talks back to me but it's a nice guid overall when it keeps its mouth shut): 284c694d-d9cc-446b-9701-b391876c8394

link|improve this answer
feedback

If you are just after a constant value and dont care what the value looks like, you could use

'Guig g = new Guid()'

In the case g will always be 00000-0000.....

link|improve this answer
I think you have misinterpreted what the question was about. – Quick Joe Smith Feb 7 '11 at 21:30
feedback

Your Answer

 
or
required, but never shown

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