File: ArchitectureDetection.cs
Web Access
Project: src\src\System.Windows.Forms.Primitives\tests\TestUtilities\System.Windows.Forms.Primitives.TestUtilities.csproj (System.Windows.Forms.Primitives.TestUtilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System;
 
public static class ArchitectureDetection
{
    public static bool Is32bit => IntPtr.Size == 4;
    public static bool Is64bit => IntPtr.Size == 8;
}