Hi,
i have a running .NET application, lets's call it App1.exe
that i cannot modify, in that application i have a custom class, (CustomClass1) , can i access and manipulate an object of that class on App1? i want to be able to access the object, and read or change values stored inside it
My custom application already makes use of CustomClass1, i just want the running object
Hope that's clear enough
Any help appreciated
ghaith 0 Newbie Poster
Recommended Answers
Jump to PostIf the class object is exposed (public) then you can use it. If it inherits from any non-exposed objects (not public) then you will not be able to use it.
Jump to PostIs this a separate process on your local machine, or a process on the remote machine? I'm not even sure if you're talking about two processes or a running process with multiple app domains or classes....
Jump to PostAnd you're wanting to call managed code in the process' loaded libraries from another application? I don't think you can do this without using the VS Debugger or manually implementing IPC. If you can do it then its news to me :P
All 9 Replies
DdoubleD 315 Posting Shark
DdoubleD 315 Posting Shark
DdoubleD 315 Posting Shark
ghaith 0 Newbie Poster
sknake 1,622 Senior Poster Featured Poster
DdoubleD 315 Posting Shark
ghaith 0 Newbie Poster
sknake 1,622 Senior Poster Featured Poster
ghaith 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.