Click here to Skip to main content
15,881,967 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
See more:
I'm fond of the new .NET 4.0 optional parameters feature, but I've recently came across a limitation I do not understand.

Consider the following simple attribute:
class SomeAttribute : Attribute
{
	public SomeAttribute(string someString = null)
	{
	}
}


When I try to use the attribute in the statement [SomeAttribute()], the following error is generated on compiling:

"An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type."

This strikes me as odd, since the default argument IS a constant expression.... And even stranger is the following:
The code can compile when I change null to "", or when I remove the part : Attribute, and call for instance new SomeAttribute(). I'm clueless....

Can someone explain me why this error is generated and not in the other case?
And are there any workarounds, besides creating all sorts of constructor overload(like in .NET versions before 4.0)?
Posted
Updated 12-Jul-10 7:43am
v2

1 solution

Looks like a compiler bug to me, and worth reporting on Connect. Meanwhile, here's a workaround:

C#
class SomeAttribute : Attribute
{
    public const string pnull = null;

    public SomeAttribute(string someString = pnull)
    {
    }
}

[SomeAttribute()]
class App
{
    static void Main()
    {
    }
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900