public static int ExecuteNonQuery(String procedure, params SqlParameter[] args)
{
if (args == null) throw new ArgumentNullException("args");
else
return ExecuteNonQuery(procedure, new SqlParameter[] { });
}
Why getting recursive function and throwing StackOverFlow Exception when calling this above method.(while the argument contains 5 values)