我可以在 C# 4.0 中将 linq 表达式作为可选参数吗?
我有以下代码。
public void GetMessages(Expression<Func<IMessageQueryable, bool>> messageSpecification, string folder = "INBOX")
{
// Implementation stripped
}
我如何为 messageSpecification
提供默认值?规范规定该值必须是编译时常量。这可能吗?
编辑:不寻找将其指定为 Expression
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以超载它。你的默认值是多少?
You can OverLoad it. What would your default value be?
何苦呢?为相同的方法创建一个不带 messageSpecification 参数的重载,并在重载方法中自行定义它的默认值,并将其传递给原始方法。无论如何,默认参数实际上永远不会像这样使用。
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.