== Why is this an issue? Type inference enables the call of a generic method without explicitly specifying its type arguments. This is not possible when a parameter type is missing from the argument list. === Noncompliant code example [source,text] ---- using System; namespace MyLibrary { public class Foo { public void MyMethod() // Noncompliant { // this method can only be invoked by providing the type argument e.g. 'MyMethod()' } } } ---- === Compliant solution [source,text] ---- using System; namespace MyLibrary { public class Foo { public void MyMethod(T param) { // type inference allows this to be invoked 'MyMethod(arg)' } } } ----