예제 #1
0
        public object Clone()
        {
            FileAttribute clone = new FileAttribute();

            clone.Id       = this.Id;
            clone.Analyzer = this.Analyzer;
            clone.Name     = (string)this.Name.Clone();
            clone.Type     = (string)this.Type.Clone();
            clone.Value    = (string)this.Value.Clone();
            return(clone);
        }