vote up 1 vote down star

How can I use a static Guid as argument in an attribute?

static class X
{
  public static readonly Guid XyId = new Guid("---");
}

[MyAttribute(X.XyId)] // does not work
public class myClass
{
}

It does not work because Guid must be readonly, it can not be const. The string and byte[] representation would also be readonly.

Is there any workaround for this?

flag

75% accept rate

2 Answers

vote up 1 vote down

It's not possible and will never be possible, because [Attributes] are compiled as metadata and static variables are initialized at runtime, and of course the former cannot access the latter (except via Reflection).

If the standard

public const string MyGuid = "blah";

won't work for you, then AFAIK the only way to achieve what you want, is with Reflection.

link|flag
AFAIK, a string must be readonly as well and can't be const. – Stefan Steinegger Sep 18 at 10:41
Nope, you can have const strings. – Mattias S Sep 18 at 11:12
Since the string I declared above is constant, it's compiled into the application and hence is available for use in Attributes. – Ian Kemp Sep 18 at 11:33
so the solution is to put the string into a const, and pass it instead of a guid as argument, then the guid is instantiated in the constructor of the attribute? – Stefan Steinegger Sep 18 at 11:59
Correct. Because the string is constant, the Guid constructed from that string must therefore also be constant. Hence it all works happily at compile time. – Ian Kemp Sep 18 at 14:13
vote up 1 vote down

Unfortunately there is no a good way to pass Guid to attribute. Only workaround would be to use another type for that and convert it to Guid.

link|flag
Yes, this would be great, but what "other type" would it be? – Stefan Steinegger Sep 18 at 11:57
Well, it would be string. But of course the GUID would not be type-safe. – Dmitriy Nagirnyak Sep 21 at 0:46

Your Answer

Get an OpenID
or

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