MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace."
Could someone please explain what it means for an expression to evaluate to a namespace - how can that be?
edit: fixed typo
|
|
MSDN docs state "An expression is a fragment of code that can be evaluated to a single value, object, method, or namespace." Could someone please explain what it means for an expression to evaluate to a namespace - how can that be? edit: fixed typo
|
|||
|
|
|
|
This is how the grammar is defined. Look at:
is an expression containing a dot operator that operates on a couple different expressions.
Not being able to use it as, say, an argument to a method doesn't disqualify it as being considered an expression. |
|||
|
|
|
On this page on MSDN it says:
So in reality you can't really do anything with a namespace being a expression it always work in the same way there is nothing dynamic about it that you can influence but for the parser a namespace has to be something :). The reason it is an expression is due to the grammar of the C# language that's used to parse the code during the compilation process. It consists out of statements, expressions, operators etc... so in the case of System.Guid yourGuid = System.Guid.NewGuid() the System part would be a expression containing a namespace, the . would be an opperator and the Guid would be a type to the C# parser. |
||||
|
|
|
(Of course, this won't compile, because you can't assign a namespace to a variable, but you get the idea.) |
||||
|
|
|
You can use an expression like this:
and then be able to use the expression later in code. This can be useful when there is namespace contention like if you have a class like MailItem or something that is common across multiple namespaces. So you can now do this:
EDIT I think Mehrdad's answer is the more correct answer, but I thought this was worth noting. |
||||||||
|