mirror of
https://github.com/quasar/Quasar.git
synced 2026-04-25 15:25:59 +03:00
[GH-ISSUE #604] Execute into memory using reflection #358
Labels
No labels
bug
bug
cant-reproduce
discussion
duplicate
easy
enhancement
help wanted
improvement
invalid
need more info
pull-request
question
wont-add
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Quasar#358
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @moody2000 on GitHub (Apr 27, 2017).
Original GitHub issue: https://github.com/quasar/Quasar/issues/604
Hey , i wondering why cant load client bytes directly in memory using reflection and entrypoint
@MaxXor commented on GitHub (May 1, 2017):
Executing the built client binary in memory should work without problems if that's what you mean.
@moody2000 commented on GitHub (May 2, 2017):
i used this code to load
AppDomain.CurrentDomain.Load(byt).EntryPoint.Invoke(Nothing, New Object() {})and got this error
@moody2000 commented on GitHub (May 2, 2017):
Oslo tried many others methods to load but got the same error
@yankejustin commented on GitHub (May 2, 2017):
Without knowing the context of your situation, I suggest looking this up on Google instead. Some good looking search results come up when searching for your solution.
@moody2000 commented on GitHub (May 3, 2017):
despite my error differ from this thread error
i will try it and feedback
@moody2000 commented on GitHub (May 3, 2017):
sorry for annoying you but still not working with reflection
Dim args As [Object]() = New [Object](0) {} args(0) = New [String](-1) {} AppDomain.CurrentDomain.Load(byt).EntryPoint.Invoke(Nothing, args)this the code i used
@EnricoVogt commented on GitHub (May 4, 2017):
Dim looks like VB.NET, not C#
@ghost commented on GitHub (Dec 18, 2018):
AppDomain.CurrentDomain.Load(byt).EntryPoint.Invoke(Nothing, Nothing)