protected bool Equals(SpItem obj) { if (obj == null) return false; else return this.Name.Equals(obj.Name) && this.Equals(obj as SpObject); }
public SpUnivers(SpItem item = default(SpItem)) : base(item ?? new SpItem()) { }
public SpItem(SpItem copy) : this(copy != null ? copy.Name : default(String), copy as SpObject) { }