c# - Can we execute a batch file (*.bat) using Application Domain? -
Can we execute the batch file (* .bat) using the application domain?
Application domains are fully CLR concepts, they do not have any relevance that is not a managed library, thus there is no way to run a batch file within an appdomain. . The batch file is tied to a specific appdomain, but it will still turn on a separate process to run your batch file.
In the MSDN documentation, under the comments you should have a very good explanatory lesson that you are an exact appdomain, and what you can and can not do with one.
Comments
Post a Comment