I want to apply an attribute which accepts a delegate as an argument, but I can't find the syntax to do it.
For example, to pass a class, you have to use typeof:
[SomeAttribute(typeof(SomeClass))]
What is the syntax for a delegate (I am trying to pass a static method)?
[SomeAttribute(??? SomeStaticMethod ???]