FromGlyphToUnManagedMemory() статический приватный Метод

static private FromGlyphToUnManagedMemory ( Glyph glyphs ) : IntPtr
glyphs Glyph
Результат System.IntPtr
        public TextExtents GlyphExtents(Glyph[] glyphs)
        {
            IntPtr      ptr = Context.FromGlyphToUnManagedMemory(glyphs);
            TextExtents extents;

            NativeMethods.cairo_scaled_font_glyph_extents(handle, ptr, glyphs.Length, out extents);

            Marshal.FreeHGlobal(ptr);
            return(extents);
        }