From what I can read the compiler just emits a string and nothing else really happens?
Is there any reason that the results of this call couldn't be interned? For a nameof(MyClass)
, if it happens a lot, it could, theoretically be worth it?
From what I can read the compiler just emits a string and nothing else really happens?
Is there any reason that the results of this call couldn't be interned? For a nameof(MyClass)
, if it happens a lot, it could, theoretically be worth it?
Yes, it will be interned just as any other string literal.
This can be demonstrated with this TryRoslyn example where this:
Is complied into this IL:
You can see that
"M"
is being loaded usingldstr
which means it is interned:From OpCodes.Ldstr Field
This can also be verified by running this example, which prints
true
: