Hi I want to show english date beside my locale date, and current culture is not english, how to do this in blazor?
c#
DateTime.Now.ToString("D", new CultureInfo("en-US"));
razor
<p>@(DateTime.Now.ToString("D", new CultureInfo("en-US"));)<p>
Instead of "D"
u can change the desired format