Enum ConfigPlatforms
Represents a set of platform configurations.
[Flags]
public enum ConfigPlatforms
- Extension Methods
Fields
Android = 4The Android operating system for mobile devices and tablets.
Linux = 32The Linux operating system, typically used for servers and desktops.
None = 0UWP = 16The Universal Windows Platform (UWP) for applications that run on Windows 10 and later devices, and XBox gaming consoles.
Windows = 2The Windows operating system for desktop applications.
iOS = 8The iOS operating system for Apple mobile devices such as iPhone and iPad.
macOS = 64The macOS operating system for Apple desktop and laptop computers.
Remarks
This enumeration allows specifying one or more platforms by combining values using bitwise
operations. For example, you can use Windows | Android
to indicate both Windows and Android platforms.