how to to Properly Use Value Tuples in C# 10 for Grouping Multiple Return Values - Getting Compiler scenarios
I've been banging my head against this for hours. I'm trying to use value tuples in my C# 10 application to return multiple values from a method, but I'm working with a compiler behavior that says `CS8652: The feature 'raw string literals' is not available in C# 10.0`. Hereβs the code I'm working with: ```csharp public (int, string) GetData(int id) { // Assume some logic here that fetches data return (id, "Data for " + id); } var result = GetData(1); Console.WriteLine($"ID: {result.Item1}, Data: {result.Item2}"); ``` When I try to compile this, I'm not sure why I'm getting this behavior related to raw string literals. I haven't even used them in my code. Iβve ensured that Iβm using .NET 6.0 and the correct SDK version, and I didn't think I had any misconfigurations. I also tried updating my project file, ensuring my `TargetFramework` is set to `net6.0`, but the behavior continues. ```xml <TargetFramework>net6.0</TargetFramework> ``` Do I need to enable any specific settings or change something in my project configuration to use value tuples properly? Any help would be greatly appreciated! I'm on Debian using the latest version of C#. Cheers for any assistance!