A curious topic with a TextBox in Windows Forms is happening to me. I use a windows form for encrypting and decrypting strings, the case is that I have seen that if in the TextBox I write a character "\" internally saved two! For example if I enter 12 \\ 34 it encrypts me: the value that is stored internally in the textbox is 12 \\\\ 34
Is there any way to prevent the TextBox control from performing this type of behavior, that is, to display on the screen the real value that contains the .Text property and not its "escaped" values?