How to upload a file to an FTP server without the login information of this server being visible in the code?
For example, I do not want to do the following:string FTPhost = "ftp://192.168.1.1/";
string FTPpass = "SenhaDoAcessoFTP";
string FTPuser = "Usuário";
FTPclient.Connect(FTPhost, FTPpass, FTPuser);
And this information can be easily seen with a decompiler. How do I hide this, and make the user using the application not have access to these passwords in any way ?