Is it a good practice in C#.Net to launch application B from application A, then close application A? Could there eventually be thread problems / bug?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There isn’t any guidance on such a thing.
If you start a new process (Application B) from your Application A, they are considered completely separate.
If you then terminate the Application A process, it would not interfere with Application B.
The only issue I can see is if Application B is trying to access files that are still open by Application A (while it shuts down).