Ejemplo n.º 1
0
        internal byte[] ToBytes()
        {
            var pointer = Cocoa.SendIntPtr(Handle, sel_bytes);
            int size    = Cocoa.SendInt(Handle, sel_length);

            byte[] bytes = new byte[size];
            Marshal.Copy(pointer, bytes, 0, size);
            return(bytes);
        }
Ejemplo n.º 2
0
 internal int ClearContents() => Cocoa.SendInt(Handle, sel_clear_contents);
Ejemplo n.º 3
0
 internal int Count() => Cocoa.SendInt(Handle, sel_count);