I attempted to transfer a string value from a child window to the text box in an open window. The specific value is:
string fileName = @"C:\aaa.txt";
After sending the above value to the parent window, the backslash \
disappears automatically, resulting in fileName
containing the value C:aaa.txt
What could be causing this problem?