I'd like to improve this piece of code.
I have 3 methods doing (basically) the same thing, but calling a different overload of a method according to the datatype passed as parameter.
//FUNC 1 (HashTable)
public string GetAString(Hashtable ht)
{
FinderObject cur = null;
int curValue = -1;
foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
{
int val = f.Match(ht);
if (val > curValue)
{
cur = f;
curValue = val;
}
}
return cur == null ? null : cur.StringFound;
}
//FUNC 2 (XElement)
public string GetAString(XElement xe)
{
FinderObject cur = null;
int curValue = -1;
foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
{
int val = f.Match(xe);
if (val > curValue)
{
cur = f;
curValue = val;
}
}
return cur == null ? null : cur.StringFound;
}
... and so on ... (I have more than 2 methods, but just to show you the basic sample
As you can see, both methods do the EXACT same thing, except calling f.Match() with the correct data type.
I could use generics for both functions (GetAString and Match), but that seems kinda pointless, since not all Types will be allowed in these calls (just 3 or 4 types, to be precise).
So, my question is: how do I improve the above piece of code?
Thank you in advance :)