It looks like he is trying to set the global "value" to a field in the constructor.
Is this even possible?
public class TestLambda
{
private bool value => inputValue == null;
public TestLambda(string inputValue)
{
// do stuff
}
}