Esempio n. 1
0
        /// <summary>
        /// Creates a khiva array object from copy.
        /// </summary>
        /// <param name="other">KhivaArray to copy.</param>
        /// <returns>KhivaArray created.</returns>
        public static KhivaArray Create(KhivaArray other)
        {
            if (other.Reference == null)
            {
                throw new Exception("Null elems object provided");
            }

            return(other.Copy());
        }