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