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