1 instantiation of Boolean
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (1)
10public static Boolean GetAbi(bool value) => new Boolean() { value = (byte)(value ? 1 : 0) };
4 references to Boolean
PresentationFramework (4)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (3)
10public static Boolean GetAbi(bool value) => new Boolean() { value = (byte)(value ? 1 : 0) }; 11public static bool FromAbi(Boolean abi) => abi.value != 0; 13public static Boolean FromManaged(bool value) => GetAbi(value);
MS\Internal\WindowsRuntime\Generated\WinRT\Projections.cs (1)
20RegisterCustomAbiTypeMappingNoLock(typeof(bool), typeof(ABI.System.Boolean), "Boolean");