I am trying to call an overrloaded method using GetMethod() and get the error: Ambiguous match found. How do I call overloaded methods?
I implement this interface:
public interface iPayload {
void FillPayload( DataRow dataRow, bool overwrite );
void FillPayload( string tableName, Guid item, bool overwrite );
}
as
public void FillPayload( Go to the complete details ...