Also, there is one other thing that is an lvalue in VC#, though it's a language extension - __argvalue().
That was the only Google result for __argvalue
.
I tried it in LINQPad and it doesn't seem to exist.
Also, there is one other thing that is an lvalue in VC#, though it's a language extension - __argvalue().
That was the only Google result for __argvalue
.
I tried it in LINQPad and it doesn't seem to exist.
I can definitively state that there is no __argvalue
in C# as of .NET Framework 4.0. The compiler binary contains a table of tokens. You can find the other hidden __ prefixed keywords starting at 0x00009840
. However, a search of the entire binary shows that there is no __argvalue
token.
The author of that comment may have been referring to __arglist
, which can be an lvalue.
© 2022 - 2024 — McMap. All rights reserved.
__argvalue
". :-) – Everick__arglist
,__makeref
,__reftype
and__refvalue
- and highlights them like any other. No such luck with__argvalue
though. – Heda__arglist
be an lvalue? – Gambell