We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5007124 commit 1e32bbfCopy full SHA for 1e32bbf
DotnetRuntimeBootstrapper.AppHost.Core/Platform/ProcessorArchitecture.cs
@@ -12,10 +12,8 @@ internal static class ProcessorArchitectureExtensions
12
{
13
extension(ProcessorArchitecture arch)
14
15
- public bool Is64Bit() =>
16
- arch is ProcessorArchitecture.X64 or ProcessorArchitecture.Arm64;
+ public bool Is64Bit() => arch is ProcessorArchitecture.X64 or ProcessorArchitecture.Arm64;
17
18
- public string GetMoniker() =>
19
- arch.ToString().ToLowerInvariant();
+ public string GetMoniker() => arch.ToString().ToLowerInvariant();
20
}
21
0 commit comments