The "Add null check" quickfix in Visual Studio doesn't have an option for generating a null check using ArgumentNullException.ThrowIfNull().
Consider the following code:
public string Example(object name)
{
return name.ToString();
}
The "Add null check" quickfix looks like this:

I'd like for the quickfix to also have an option for generating a call to ArgumentNullException.ThrowIfNull(), so that the resulting code looks like this:
public string Example(object name)
{
ArgumentNullException.ThrowIfNull(name);
return name.ToString();
}