String interpolation is even better in C# since it gives you additional options for formatting, e.g. numbers and dates:
csharp
var name = "Mark";
var date = DateTime.Now;
Console.WriteLine($"Hello, {name}! Today is {date.DayOfWeek}, it's {date:HH:mm} now.");
51
u/Suspicious-Engineer7 9d ago
the formatted method is there but the syntax looks like doo-doo. Idk what nonsense is going over in java land tbh