Files
codeql/csharp/ql/test/library-tests/csharp10/ConstInterpolatedString.cs
2022-01-11 12:01:40 +01:00

8 lines
226 B
C#

using System;
public class MyConstStringInterpolationClass
{
public const string hello = "Hello";
public const string helloWorld = $"{hello} World";
public const string reallyHelloWorld = $"Really {helloWorld}";
}