Patrick Leonardo: A Prophet? A Visionary? by Patrick Leonardo - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

Replace repetitive arguments with params array

 

A public or protected method in a public type has more than three parameters, and its last three parameters are the same type.

Use a parameter array instead of repeated arguments when the exact number of arguments is unknown and the variable arguments are the same type, or can be passed as the same type. For example, the WriteLine method provides a general-purpose overload that uses a parameter array to accept any number of Object arguments.

To fix a violation of this rule, replace the repeated arguments with a parameter array.

It is always safe to suppress a warning from this rule; however, this design might cause usability issues.

using System;

namespace DesignLibrary

{

public class BadRepeatArguments

{

// Violates rule: ReplaceRepetitiveArgumentsWithParamsArray.

public void VariableArguments(object obj1, object obj2, object obj3, object obj4) {}

public void VariableArguments(object obj1, object obj2, object obj3, object obj4, object obj5) {}

}

public class GoodRepeatArguments

{

public void VariableArguments(object obj1) {}

public void VariableArguments(object obj1, object obj2) {}

public void VariableArguments(object obj1, object obj2, object obj3) {}

public void VariableArguments(params Object[] arg) {}

}

}