Closed
Description
Blame @davidfowl - he told me to put them here ;p
- the big one; is there an indirect equivalent to
GetMethodBody()
/GetILAsByteArray()
(plus locals, params, exception clauses etc)? Basically, is there an API that exposes the raw underlying IL? If the answer to this one is "nope", then the rest is moot... [UnverifiableCodeAttribute]
- no longer exists; is there a way to determine if a member is unverifiable?- can
volatile
fields be detected? Sigil used to do this viaGetRequiredCustomModifiers()
TypedReference
- am I right in thinking this simply doesn't exist as a concept?- any mechanism to resolve string literal and fields from metadata tokens? (akin to
ResolveString()
/ResolveField()
)
Context: I'm converting Sigil/Jil; most stuff is working, but some low-level meta-programming stuff is missing. It would be nice to reinstate the original optimizations to Jil (and an entire chunk of Sigil).