Search code examples
localeblazor-server-sideblazor-webassembly

How to show english date (gregorian) in blazor when the current locale is not english


Hi I want to show english date beside my locale date, and current culture is not english, how to do this in blazor?


Solution

  • 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