在 linq 中使用 ref 参数

发布于 2024-09-18 00:03:37 字数 463 浏览 6 评论 0原文

我有一个带有 ref 参数的函数,并希望在 linq 查询中使用它,但编译器会抱怨。

该函数称为 BreakLine,它根据行长度将字符串分成行,ref 参数用于跟踪每次调用时它在字符串中的位置:

string BreakLine(string text, int lineLimit, ref offset);

查询是:

from pt in productText 
let offset = 0
from ll in lineLimits
select new Line() { Text = BreakLine(pt, ll, ref offset) }

(Line 是一个简单的数据类

)错误是:

“无法将范围变量‘offset’作为 out 或 ref 参数传递”

有什么方法可以解决这个问题吗?

I have a function that takes a ref parameter and would like to use it in a linq query but the compiler complains.

The function is called BreakLine and breaks a string up into lines based on a line length, the ref parameter is used to keep track of where it is in the string on each call:

string BreakLine(string text, int lineLimit, ref offset);

The query is:

from pt in productText 
let offset = 0
from ll in lineLimits
select new Line() { Text = BreakLine(pt, ll, ref offset) }

(Line is a simple data class)

The error is:

"Cannot pass the range variable 'offset' as an out or ref parameter"

Any way to workaround this?

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

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

发布评论

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

评论(2

亚希 2024-09-25 00:03:37

参数offset没有指定类型。尝试将 BreakLine 方法签名更改为:

string BreakLine(string text, int lineLimit, ref int offset);

...但我想这只是您问题中的一个拼写错误。您遇到的真正问题是您收到编译器错误CS1939。引用文档:

范围变量是只读的
查询中引入的变量
表达式并用作标识符
对于 a 中的每个连续元素
源序列。因为它不可能是
以任何方式修改,没有意义
通过 refout 传递它。
因此,这两种操作都不是
有效。

The parameter offset has no type specified. Try to change the BreakLine method signature into this:

string BreakLine(string text, int lineLimit, ref int offset);

...but I guess that is just a typo in your question. The real problem you have is that you get compiler error CS1939. Quote from the documentation:

A range variable is a read-only
variable that is introduced in a query
expression and serves as an identifier
for each successive element in a
source sequence. Because it cannot be
modified in any way, there is no point
in passing it by ref or out.
Therefore, both operations are not
valid.

粉红×色少女 2024-09-25 00:03:37
Func<string, int, Line> lineFunc = (pt, ll) =>
{
    int offset = 0;
    return new Line() { Text = BreakLine(pt, ll, ref offset) };
};
var test = from pt in productText
            from ll in lineLimits
            select lineFunc(pt, ll);
Func<string, int, Line> lineFunc = (pt, ll) =>
{
    int offset = 0;
    return new Line() { Text = BreakLine(pt, ll, ref offset) };
};
var test = from pt in productText
            from ll in lineLimits
            select lineFunc(pt, ll);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文