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
<Project> | |
<PropertyGroup> | |
<ParentPropsFile>$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))</ParentPropsFile> | |
</PropertyGroup> | |
<Import Project="$(ParentPropsFile)" /> | |
<!-- Other property and item groups in thie file --> | |
</Project> |
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; | |
using System.Collections.Generic; | |
using System.Threading.Tasks; | |
namespace CompositeAsyncQueues | |
{ | |
public interface IAsyncQueue<T> | |
{ | |
Task<T> DequeueAsync(); | |
} |
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
00007ff8`6020ec10 ThrowMethodInlined.Benchmarks.IntBenchmarks.MustHaveValueBaseVersion() | |
00007ff8`6020ec15 488d4108 lea rax,[rcx+8] | |
00007ff8`6020ec19 0fb610 movzx edx,byte ptr [rax] | |
00007ff8`6020ec1c 8b4004 mov eax,dword ptr [rax+4] | |
00007ff8`6020ec1f 84d2 test dl,dl |