我可以在 C# 4.0 中将 linq 表达式作为可选参数吗?

发布于 2024-11-02 20:14:38 字数 404 浏览 0 评论 0 原文

我有以下代码。

public void GetMessages(Expression<Func<IMessageQueryable, bool>> messageSpecification, string folder = "INBOX")
{
    // Implementation stripped           
}

我如何为 messageSpecification 提供默认值?规范规定该值必须是编译时常量。这可能吗?

编辑:不寻找将其指定为 Expression>;消息规范 = null

I have the following code.

public void GetMessages(Expression<Func<IMessageQueryable, bool>> messageSpecification, string folder = "INBOX")
{
    // Implementation stripped           
}

How can i provide default value for messageSpecification?. Specification says the value must be a compile time constant. Is this possible?.

EDIT: Not lookig for specifying it as Expression<Func<IMessageQueryable, bool>> messageSpecification = null

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

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

发布评论

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

评论(2

眼眸印温柔 2024-11-09 20:14:38

你可以超载它。你的默认值是多少?

You can OverLoad it. What would your default value be?

£冰雨忧蓝° 2024-11-09 20:14:38

何苦呢?为相同的方法创建一个不带 messageSpecification 参数的重载,并在重载方法中自行定义它的默认值,并将其传递给原始方法。无论如何,默认参数实际上永远不会像这样使用。

public void GetMessages(string folder = "INBOX")
{
    this.GetMessages(DEFAULT_VALUE, folder);        
}

Why bother? Create an overload for the same method without messageSpecification parameter and define it's default value yourself inside the overloaded method and pass it to your original method. Default parameters are actually never meant to be used like that anyway.

public void GetMessages(string folder = "INBOX")
{
    this.GetMessages(DEFAULT_VALUE, folder);        
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文