We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
How do I extract this string value If I know the Resource name AND the data name ?
This is how I'm trying to do it :
foreach (Resource res in module.Resources) { if (res.Name.Contains(resourcename)) { //Get_stuck } }
I don't want to use Invoke this its a waste of time / ram.
Thanks :)
The text was updated successfully, but these errors were encountered:
de4dot and dnSpy both use the same code to read .NET resources. See eg. https://github.com/0xd4d/dnSpy/blob/master/dnSpy/TreeNodes/ResourceNodes/ResourceElementSetTreeNode.cs#L59
Sorry, something went wrong.
BTW, what OS are you using? That scrollbar looks real thin. :)
Windows 8.1 here ! :)
Thanks for your answer, mark it as solved.
No branches or pull requests
How do I extract this string value If I know the Resource name AND the data name ?
This is how I'm trying to do it :
foreach (Resource res in module.Resources)
{
if (res.Name.Contains(resourcename))
{
//Get_stuck
}
}
I don't want to use Invoke this its a waste of time / ram.
Thanks :)
The text was updated successfully, but these errors were encountered: