You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hmm, this still doesn't seem right for other scenarios. If I use the original (unmodified) current grammar, I am experiencing issues with the following code snippets:
s = Regex.Replace(s, pname, $"'{p.Value:MM/dd/yy HH:mm:ss}'");
Db.Email(person.FromEmail, list,
"Volunteer Substitute Commitment for " org.OrganizationName,
$@"
<p>{person.Name} has requested a substitute on {attend.MeetingDate:MMM d} at {attend.MeetingDate:h:mm tt}.</p>
<blockquote>
{reportlink}
</blockquote>");
public string Schedule => $"{MeetingTime:ddd h:mm tt}";
From the grammar:
It's not a double curly by spec. It's a single curly. Here's the correct def:
https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/tokens/interpolated
So the grammar should be
The text was updated successfully, but these errors were encountered: