I have to create the following VB.Net code through a C# CodeConditionStatement
If Not Nullable.Equals(field.Name, Value) Then
    ...
End If
What I alredy tried was
var property = new CodeMemberProperty();
CodeExpression condition = new CodeMethodInvokeExpression(System.Nullable,"Equals", new CodeExpression(){
                new CodeVariableReferenceExpression(field.Name),
                new CodePropertySetValueReferenceExpression()
            });
property.SetStatements.Add(new CodeConditionStatement(condition, null));
but a System.Nullable can't be converted in a CodeExpression.