Open with makro a color palette xml file

How i can open a palette in c#

This will not work:
corelApp.ActiveDocument.Palette.Open("Resources/Color_PAlettes/GCC_Color_Palette.xml");

  • string path = @"Resources/Color_PAlettes/GCC_Color_Palette.xml";
    Palette palette = corelApp.PaletteManager.LoadPalette(path);
    palette.Open();

    Or

    string path = @"Resources/Color_PAlettes/GCC_Color_Palette.xml";
    corelApp.Palettes.Open(path);