Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for field RVA #43

Open
wants to merge 3 commits into
base: metadata-provider
Choose a base branch
from

Conversation

fcurdi
Copy link

@fcurdi fcurdi commented May 11, 2020

Static fields can define their init value as a constant stored in the PE File. The value is declared using the .data directive, represented as a bytearray and labeled (so it can be referenced later).

Initialization of a static array field is an example of this. The field itself does not hold the initial value. A special type is created (<PrivateImplementationDetails>) that has a field that references the value declared with .data. It is then used in the constructor of the class that has the static array field to initialize it.

@edgardozoppi edgardozoppi added this to To do in Initial release Nov 12, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

Successfully merging this pull request may close these issues.

None yet

1 participant