好吧,所以我有一个我用于打印方法的队列。它存储我需要打印的每一行的文本和选定的字体。以下循环应该打印出Queue的内容,但看起来peek返回对象的值而不是对象的实际引用。有没有办法让它返回参考?
while (reportData.Count > 0 && checkLine(yPosition, e.MarginBounds.Bottom, reportData.Peek().selectedFont.Height))
{
ReportLine currentLine = reportData.Peek();
maxCharacters = e.MarginBounds.Width / (int)currentLine.selectedFont.Size;
if (currentLine.text.Length > maxCharacters)
{
e.Graphics.DrawString(currentLine.text.Substring(0, maxCharacters), currentLine.selectedFont, Brushes.Black, xPosition, yPosition);
yPosition += currentLine.selectedFont.Height;
currentLine.text.Remove(0, maxCharacters);
}
else
{
e.Graphics.DrawString(currentLine.text, currentLine.selectedFont, Brushes.Black, xPosition, yPosition);
yPosition += currentLine.selectedFont.Height;
reportData.Dequeue();
}
}
ReportLine是一种结构,因此除非另有说明,否则它始终按值传递。我不想把它改成一个类,因为它的唯一目的是保存2条信息。
[编辑]
这就是ReportLine的样子。这很简单:
public struct ReportLine
{
public string text;
public Font selectedFont;
}
答案 0 :(得分:3)
text
是string
类型的字段,您希望它由currentLine.text.Remove(0, maxCharacters);
更改。但Remove
不修改字符串,它返回一个新字符串。
尝试:
currentLine.text = currentLine.text.Remove(0, maxCharacters);
并使ReportLine
成为引用类型:
public class ReportLine
{
public string text;
public Font selectedFont;
}