rspec/rules/S2479/csharp/rule.adoc
2020-06-30 17:16:12 +02:00

22 lines
610 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

include::../description.adoc[]
== Noncompliant Code Example
----
string tabInside = "A B"; // Noncompliant, contains a tabulation
string zeroWidthSpaceInside = "foobar"; // Noncompliant, it contains a U+200B character inside
Console.WriteLine(zeroWidthSpaceInside); // Prints "foo?bar"
----
== Compliant Solution
----
string tabInside = "A\tB"; // Compliant, uses escaped value
string zeroWidthSpaceInside = "foo\u200Bbar"; // Compliant, uses escaped value
Console.WriteLine(zeroWidthSpaceInside); // Prints "foo?bar"
----
== Exceptions
Verbatim string literals have no escape character mechanism.