Example #1
0
File: Api.cs Project: fw2568/YaNco
        public static TableHandle CloneTable(TableHandle tableHandle, out RfcErrorInfo errorInfo)
        {
            var ptr = Interopt.RfcCloneTable(tableHandle.Ptr, out errorInfo);

            return(ptr == IntPtr.Zero ? null : new TableHandle(ptr, true));
        }