'Does user input get deleted after the completion of a console application in C# or is there a command for it after it successfully runs?

Just a general question for a chat bot console application I am writing in C#. Does user input get saved or automatically purged after a console application exits or is there a command I should run right before it terminates? I would like to ensure user input remains private and secure. I couldn’t find the answer on here. Thanks in advance!

Edit:

For those asking for more of a detailed explanation of my question, I’m designing a sort of self-help chat bot and user input would be strings which I am using if else statements to filter paired keywords and custom responses. The reason I’m asking about the user input being deleted is because users might reveal personally private information and I wanted to make sure that when being used my application would erase all user input once the application is terminated. I’m thinking of hosting this application as a web based and possibly mobile text application so this question may apply to those platforms as well.

If the user input is erased after the application terminates then that’s perfect and what I want to hear. I’ll have to do more research on cellular and web based platforms though to make sure all user input remains private and is erased after termination.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source