Tagged Questions
7
votes
5answers
2k views
What is the scope of a Static Class?
I have an assembly that may be used by more than one process at a time. If I am using a static class, would the multiple processes all use the same "instance" of that class?
Since the processes ...
5
votes
2answers
1k views
Why does calling AppDomain.Unload doesn't result in a garbage collection?
When I perform a AppDomain.Unload(myDomain) I expect it to also do a full garbage collection.
According to Jeffrey Richter in "CLR via C#" he says that during an AppDomain.Unload:
"The CLR forces a ...
4
votes
1answer
268 views
Prevent Stack Overflow Exception from crashing process
Assume I have an application, where user can provide script written in JavaScript to perform some task in it. This is done using Jint. However, badly written script can cause Stack Overflow Exception ...
3
votes
3answers
165 views
implement callback over ApplicationDomain-boundary in .net
I load a dll dynamically using an Applicationdomain to unload when nessesary. What i cant get to work is a callback-method from the created Appdomain if the task in the loaded dll terminates itself.
...
2
votes
0answers
137 views
Trying to create instance Application domain
I am trying to do the following :
private static MyClass CreateMyClassInDomain(ApplicationDomain domain, string componentName, params object[] parmeters)
{
var componentPath = ...
2
votes
1answer
670 views
How can I run a WPF application in a new AppDomain? ExecuteAssembly fails
I'm trying to launch a WPF application from a Console application, using Application Domains,
but when I do, I receive unexpected errors.
Running the WPF application standalone, works.
This code ...
2
votes
2answers
1k views
C# Assembly Loading and Late Binding
I'm reading this book on C# and .NET and I'm learning a bunch of cool stuff. I've read the part where the author talks about dynamically loading an assembly and creating an instance of a type in that ...
0
votes
1answer
106 views
Create instance of myClass by factory method in othe application domain
I am trying to create instance of MyClass by factory method in othe application domain is there any solution to this problem?
Edited:
The question is how to do it
Thank you.
0
votes
2answers
195 views
Trying to load dll into Application domain
I am trying to do the following:
if(domain != null)
{
AppDomain.Unload(domain);
}
domain = AppDomain.CreateDomain(appDomainName);
Assembly assembly = domain.Load(location);
and the code ...
0
votes
3answers
401 views
application domains and threads
A quote from MSDN: http://msdn.microsoft.com/en-us/library/6kac2kdh.aspx
One or more managed threads
(represented by
System.Threading.Thread) can run in
one or any number of application
...