I have a line like
string info = "C:\tempFile" , but when I show that it displays as C:empFile . I think the problem is with the tab delimiter (\ t), but I don't know how to fix it.
string info = "C:\tempFile"
C:empFile
This is simply because \ is a special character . You need to avoid this!
\
Two ways to solve it:
string info = "C:\\tempFile.txt" ; // Means actually C:\tempFile.txt
or
string info = @"C:\tempFile.txt" ; // @ Means don't take care of every \ in this sequence
Source: https://habr.com/ru/post/1235654/More articles:Attempt to get the key in the foreach loop to work using the blade - phpUsing text overflow: ellipsis; in the parent div when the child is an input - htmlJavascript + = equivalent? - javascriptHow to make other directives work inside uib-tab elements - javascriptStored procedure does not work correctly with dynamic sql text - c #Passing C # parameter to Powershell Script - Unable to check argument in 'Identity' parameter - c #Can I say that other people_git commit in the submitted PR? - gitWhat is the difference between JasperReport formats? - jasper-reportsHow to visualize pairwise comparisons with `ggplot2`? - rHow to set a large image in the notification ionic.io-push - androidAll Articles