public void Clone(out IEnumExplorerCommand copy)
            {
                EnumExplorerCommandImpl copyImpl = new EnumExplorerCommandImpl(this.commands);

                copyImpl.index = this.index;
                copy           = copyImpl;
            }
Exemplo n.º 2
0
 public HRESULT EnumSubCommands(out IEnumExplorerCommand ppEnum)
 {
     ppEnum = null; return(HRESULT.E_NOTIMPL);
 }