G
Guest
In my app I have a MessageBox like the following:
this.MessageBox.Show("Hello");
Question: How do I encrypt the String "Hello" in C# (2.0), so that the user
can't "directly" see the String, for example while using Lutz Roeders .NET
Reflector?
What about using SecureString?
this.MessageBox.Show("Hello");
Question: How do I encrypt the String "Hello" in C# (2.0), so that the user
can't "directly" see the String, for example while using Lutz Roeders .NET
Reflector?
What about using SecureString?