C#: Add UTF-8 encoded string test case.

This commit is contained in:
Michael Nebel
2023-01-19 12:23:55 +01:00
parent 20398f1299
commit 5c5d330704

View File

@@ -35,4 +35,14 @@ public class MyTestClass
Show matching set of curly braces: {{{message2}}}
""";
}
public void M3()
{
// UTF-8 encoded.
var x = "AUTH8: "u8;
// UTF-16 encoded.
var y = "AUTH16: ";
}
}