public void OpenParameterGenericCall() { GenericStatic <TFoo> .Something(default(TFoo)); }
public void ClosedInstanceTypeSpecGenericCall() { GenericStatic <string[]> .Something(new [] { "hello" }); }
public void ClosedStaticGenericCall() { GenericStatic <int> .Something(5); }
public void ClosedStaticWithGenericParameter() { GenericStatic <int> .WithParam <string>("hello", 42); }