// Licensed to the .NET Foundation under one or more agreements.// The .NET Foundation licenses this file to you under the MIT license.namespaceSystem;
public static classArchitectureDetection
{
public static boolIs32bit => IntPtr.Size == 4;
public static boolIs64bit => IntPtr.Size == 8;
}