1 write to value
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (1)
10public static Boolean GetAbi(bool value) => new Boolean() { value = (byte)(value ? 1 : 0) };
3 references to value
PresentationFramework (3)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (3)
11public static bool FromAbi(Boolean abi) => abi.value != 0; 12public static unsafe void CopyAbi(bool value, IntPtr dest) => *(byte*)dest.ToPointer() = GetAbi(value).value; 14public static unsafe void CopyManaged(bool arg, IntPtr dest) => *(byte*)dest.ToPointer() = FromManaged(arg).value;