You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
throw new FileNotFoundException(string.Format("Could not find file \"{0}\".\nEnsure it is in one of the CS-Script search/probing directories.", file));
\n may not be detected as good-enough line break, in my case resulting in an error message with neither line break nor space:
System.IO.FileNotFoundException: Could not find file "..\CommunicationObject.cs".Ensure it is in one of the CS-Script search/probing directories.
I suggest to use Environment.NewLine in such cases. Note that this may apply to several other locations.
Best regards,
Matthias
The text was updated successfully, but these errors were encountered:
Hi Oleg,
Minor issue related to the following code:
throw new FileNotFoundException(string.Format("Could not find file \"{0}\".\nEnsure it is in one of the CS-Script search/probing directories.", file));
\n
may not be detected as good-enough line break, in my case resulting in an error message with neither line break nor space:I suggest to use
Environment.NewLine
in such cases. Note that this may apply to several other locations.Best regards,
Matthias
The text was updated successfully, but these errors were encountered: