public static int ExecuteNonQuery(String procedure, params SqlParameter[] args)
{
if (args == null) throw new ArgumentNullException("args");
else
return ExecuteNonQuery(procedure, new SqlParameter[] { });
}
Run Code Online (Sandbox Code Playgroud)
为什么在调用上面的方法时获取递归函数并抛出StackOverFlow异常.(而参数包含5个值)