Closed TylerDM closed 2 years ago
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.
Cannot sign CLA as the page is blank.
When using string literals to represent Windows file paths in C#, you need to escape the backslashes (which are escape characters in C# strings) via
\\
or using the verbatim identifier@""
. Failing to do so produces compile time errors. I modified the code examples to use the verbatim identifier.