vote up 0 vote down star

I don't see any problems with this code, but it feels like I'm missing something. Maybe it is possible to reduce the number of lines. Or is there even a bug to be fixed? I'm open to any suggestions.

public class NameComparer : IEqualityComparer<FileInfo>
{
	public bool Equals (FileInfo x, FileInfo y)
	{
		if (x == null) {
			return y == null;
		}

		if (y == null) {
			return false;	
		}

		return x.Name.Equals (y.Name);
	}

	public int GetHashCode (FileInfo obj)
	{
		return obj.Name.GetHashCode ();
	}
}
flag

80% accept rate
1  
you could check if x and y reference the same object. – Zenon Nov 22 at 16:32

2 Answers

vote up 2 vote down check

You should first return true if the FileInfo's equality operator returns true. Also, specify the type of string comparison you want to do. Presumably you'd want to ignore case, since these are filenames.

    public bool Equals(FileInfo x, FileInfo y)
    {
        if (x == y)
        {
            return true;
        }

        if (x == null || y == null)
        {
            return false;
        }

        return string.Compare(x.Name, y.Name, StringComparison.OrdinalIgnoreCase) == 0;
    }
link|flag
1  
Do you really need to check for y == null after comparing x == y? Maybe second if should be like this: if (x == null || y == null) return false? – Dmitry Nov 23 at 0:21
Thanks for pointing that out. Have edited. – AdamRalph Nov 23 at 0:49
vote up 0 vote down

You might want to consider whether you want a case-insensitive comparison.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.