@namespace antblazorpro.Pages.Account.Center @context.Title Active User @FormatWan(context.ActiveUser) New Users @context.NewUser.ToString("0,0") @code { private static readonly RenderFragment Download =@ ; private static readonly IList Actions = new List { Download, @, @, @ }; private static RenderFragment FormatWan(int val) { if (val > 10000) { val = (int) Math.Floor((double) val / 10000); } return @ @val 万 ; } }
Active User
@FormatWan(context.ActiveUser)
New Users
@context.NewUser.ToString("0,0")