1 instantiation of Char
PresentationFramework (1)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (1)
23
public static Char GetAbi(char value) => new
Char
() { value = (ushort)value };
5 references to Char
PresentationFramework (5)
MS\Internal\WindowsRuntime\Generated\WinRT\FundamentalMarshalers.cs (4)
23
public static
Char
GetAbi(char value) => new Char() { value = (ushort)value };
24
public static char FromAbi(
Char
abi) => (char)abi.value;
26
public static
Char
FromManaged(char value) => GetAbi(value);
29
public static void DisposeAbi(
Char
abi) { }
MS\Internal\WindowsRuntime\Generated\WinRT\Projections.cs (1)
21
RegisterCustomAbiTypeMappingNoLock(typeof(char), typeof(ABI.System.
Char
), "Char");