I have a List < MyObj >
I have also overriden Equals(Object) in class MyObj.
When I call indexof on my list it does not get any index and equals is not called.
Is my assumption correct that Equals(Object) should be called when I call index of ?
If not how do I find MyObj objects if I do not have exact reference but objects are logically same,,,?
here is the code I am using
public class TreeNode<T>
{
private readonly List<TreeNode<T>> _children = new List<TreeNode<T>>();
public TreeNode(T value)
{
Value = value;
}
public virtual bool Equals(Object obj)
{
TreeNode<T> treeNode = (TreeNode<T>)obj;
if (treeNode.Value.Equals(Value))
return true;
else
return false;
}
public TreeNode<T> this[int i]
{
get { return _children[i]; }
}
public TreeNode<T> Parent { get; private set; }
public T Value { get; set; }
public ReadOnlyCollection<TreeNode<T>> Children
{
get { return _children.AsReadOnly(); }
}
public TreeNode<T> AddChild(T value)
{
var node = new TreeNode<T>(value) { Parent = this };
_children.Add(node);
return node;
}
public bool RemoveChild(TreeNode<T> node)
{
return _children.Remove(node);
}
public void Traverse(Action<T> action)
{
action(Value);
foreach (var child in _children)
child.Traverse(action);
}
}
this is how I am call the collection
int artistIndex = serverDirs.Children.IndexOf(new TreeNode<String>(artist));
in the index returned in always -1 even though the item is there in the children Thanks,