We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a36744 commit 5b89f0eCopy full SHA for 5b89f0e
csharp/ql/test/library-tests/csharp10/ConstInterpolatedString.cs
@@ -0,0 +1,8 @@
1
+using System;
2
+
3
+public class MyConstStringInterpolationClass
4
+{
5
+ public const string hello = "Hello";
6
+ public const string helloWorld = $"{hello} World";
7
+ public const string reallyHelloWorld = $"Really {helloWorld}";
8
+}
0 commit comments