For the lambdas parameters you define the method like this:
public void MyMethod(int inparameter, Action<LambdaParameterType> lambdaexpression);
this gives you:
MyMethod(10, lpt => { if(lpt is LambdaParameterType) ... ;} );
Thats just one of the many methods...