Esempio n. 1
0
        public static Variant Copy(Variant other)
        {
            var self = new Variant(other.GetType());

            self.CopyFrom(other);
            return(self);
        }