Any idea on how does Windows Form stay even after its execution unless we hit on the close [X] mark explicitly. This is not the case for Console Application?
I would like to know how this is managed by .NET internally?
Thanks in advance
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.
In order to get this difference I believe you should read something about
Windows Messages(Messages Queue,Message loop, etc.). For example here. .Net doesn’t bring anything new here, it’s more about windows applications itself.