Exemple #1
0
        public IParameterItem Clone()
        {
            StringItem item = new StringItem();

            item.Str = this.Str;
            return(item);
        }
Exemple #2
0
        public void Copy(IParameterItem other)
        {
            StringItem ot = other as StringItem;

            this.Str = ot.Str;
        }