SecureDelete.FileSearch.AttributeFilter.Clone C# (CSharp) 메소드

Clone() 공개 메소드

public Clone ( ) : object
리턴 object
        public override object Clone()
        {
            AttributeFilter temp = new AttributeFilter();
            temp._name = _name;
            temp._attributeValue = _attributeValue;
            temp._condition = _condition;
            temp._enabled = _enabled;
            return temp;
        }