gpt4 book ai didi

c# - 赋值的左侧必须是变量

转载 作者:行者123 更新时间:2023-12-05 00:07:22 25 4
gpt4 key购买 nike

关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

7年前关闭。




Improve this question




尝试将数据库(Linq 到 sql)中的整数数据放入标签中,出现此错误异常:

left-hand side of an assignment must be a variable property or indexer



代码:
protected void Page_Load(object sender, EventArgs e)
{
DataClassesDataContext data = new DataClassesDataContext();

var visit = (from v in data.SeeSites where v.Date == todaydate select v).FirstOrDefault();
int seennow = visit.See; // On This line I can put data in seenow variable, no problem

Convert.ToInt64(lblSeeNow.Text) = visit.See; // exception error appears here
}

最佳答案

尝试:

if (visit.See != null) {
lblSeeNow.Text = visit.See.ToString();
}

您不能为函数结果赋值。在你的情况下 lblSeeNow.Text是 String 类型,因此使用 ToString();你的 Int 值的方法。

关于c# - 赋值的左侧必须是变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19843350/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com