CodeConditionStatement 和 Nullable.Equals

发布于 2024-10-27 20:09:24 字数 647 浏览 3 评论 0原文

我必须通过 C# CodeConditionStatement 创建以下 VB.Net 代码

If Not Nullable.Equals(field.Name, Value) Then
    ...
End If

我已经尝试过

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));

System.Nullable 无法在 CodeExpression 中转换。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

记忆里有你的影子 2024-11-03 20:09:25

所以这似乎有效:

property.SetStatements.Add(new CodeConditionStatement(
                new CodeSnippetExpression(String.Format("Not Nullable.Equals({0}, value)", field.Name)), 
                null));

非常糟糕但有效......

如果有人有更好的主意:D

So this seems to work:

property.SetStatements.Add(new CodeConditionStatement(
                new CodeSnippetExpression(String.Format("Not Nullable.Equals({0}, value)", field.Name)), 
                null));

pretty awful but working.....

If someone has a better idea :D

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文