/// <summary>Retrieves an icon that represents a specific generic editor icon used for toggleable elements.</summary>
        public static GUIContentImages GetEditorToggleIcon(EditorToggleIcon icon)
        {
            GUIContentImages temp;

            Internal_getEditorToggleIcon(icon, out temp);
            return(temp);
        }
 private static extern void Internal_getEditorToggleIcon(EditorToggleIcon icon, out GUIContentImages __output);