7FF81390136B mov rcx,[rsi+8]
7FF81390136F mov r11,7FF8135903A8
7FF813901379 call qword ptr [7FF8135903A8]
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.CommandLine; | |
using System.CommandLine.NamingConventionBinder; | |
using System.Diagnostics; | |
using Microsoft.Data.Sqlite; | |
using Smart.Data.Mapper; | |
#pragma warning disable CA1812 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public sealed class SlidingPager<T> : IList<T> | |
{ | |
private readonly List<T> source; | |
private readonly Func<T, DateTime> selector; | |
private int end; | |
private int start; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class TimeAxisCalculator | |
{ | |
private static readonly TimeSpan[] CandidateValues = | |
{ | |
TimeSpan.FromMinutes(1), | |
TimeSpan.FromMinutes(2), | |
TimeSpan.FromMinutes(5), | |
TimeSpan.FromMinutes(10), | |
TimeSpan.FromMinutes(15), | |
TimeSpan.FromMinutes(30), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface ISectionCallback | |
{ | |
void SetMenu(RenderFragment value); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public sealed class LoadingOverlay : WindowOverlay | |
{ | |
public LoadingOverlay(IWindow window) | |
: base(window) | |
{ | |
AddWindowElement(new LoadingElementOverlay()); | |
EnableDrawableTouchHandling = true; | |
} | |
private class LoadingElementOverlay : IWindowOverlayElement |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<CascadingAuthenticationState> | |
<Router AppAssembly="@typeof(App).Assembly"> | |
<Found Context="routeData"> | |
<ExtendedErrorBoundary @ref="errorBoundary"> | |
<ChildContent> | |
<ExtendedAuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" NotAuthorizedLayout="@typeof(ErrorLayout)"> | |
<NotAuthorized> | |
@if (context.User.Identity?.IsAuthenticated != true) | |
{ | |
<Server.Pages.Login Reload="true" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ItemGroup> | |
<Resource Include="App.ico" /> | |
</ItemGroup> | |
<ItemGroup> | |
<Content Include="appsettings.json"> | |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | |
</Content> | |
<Content Include="appsettings.*.json"> | |
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/" | |
<button class="btn btn-primary" @onclick="OnExecuteClock">Execute</button> | |
@code { | |
[CascadingParameter] | |
[AllowNull] | |
public ProgressState Progress { get; set; } | |
private async Task OnExecuteClock() |
lang
async
async/await
asynclocal
awaiter
calcellation
channels
configure-await
continuations