gpt4 book ai didi

c# - 当前上下文中不存在名称 'xx'

转载 作者:太空宇宙 更新时间:2023-11-03 20:18:20 26 4
gpt4 key购买 nike

不太确定我做错了什么。我得到的错误是:

名称“_questions”在当前上下文中不存在 - FormChoose.cs

代码:

表单选择.cs

using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml.Linq;
using System.Xml.Serialization;

namespace WindowsFormsApplication1
{
public partial class FormChoose : Form
{
public FormChoose()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
_questions = GetQuestions("1");
}
}
}

Form1.cs

using System;
using System.IO;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Xml.Linq;
using System.Xml.Serialization;

任何关于如何实现这一点的意见或答案将不胜感激。任何可以帮助 ltn 的帖子的人都可能得到奖励/激励,这样我才能让它正常工作。

谢谢。

最佳答案

您正在尝试从未声明的位置访问成员和方法。您尝试访问的方法和成员(_questionsGetQuestions())是 Form1 的一部分,您正试图在 FormChoose 中访问它们。唯一的方法是在 FormChoose 中引用一个 Form1 对象。而且我真的没有看到任何地方声明 path 应该在 Form1 中。

关于c# - 当前上下文中不存在名称 'xx',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15256896/

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