1 write to value
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (1)
10
public 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)
11
public static bool FromAbi(Boolean abi) => abi.
value
!= 0;
12
public static unsafe void CopyAbi(bool value, IntPtr dest) => *(byte*)dest.ToPointer() = GetAbi(value).
value
;
14
public static unsafe void CopyManaged(bool arg, IntPtr dest) => *(byte*)dest.ToPointer() = FromManaged(arg).
value
;